30 Eylül 2009 Çarşamba
MSSQL CREATE UNIQUE NONCLUSTERED INDEX
17 Ağustos 2009 Pazartesi
CASE (Transact-SQL)
- input_expression
Is the expression evaluated when the simple CASE format is used. input_expression is any valid expression.
- WHEN when_expression
Is a simple expression to which input_expression is compared when the simple CASE format is used. when_expression is any valid expression. The data types of input_expression and eachwhen_expression must be the same or must be an implicit conversion.
- THEN result_expression
Is the expression returned when input_expression equals when_expression evaluates to TRUE, or Boolean_expression evaluates to TRUE. result expression is any valid expression.
- ELSE else_result_expression
Is the expression returned if no comparison operation evaluates to TRUE. If this argument is omitted and no comparison operation evaluates to TRUE, CASE returns NULL. else_result_expression is any valid expression. The data types of else_result_expression and any result_expression must be the same or must be an implicit conversion.
- WHEN Boolean_expression
Is the Boolean expression evaluated when using the searched CASE format. Boolean_expression is any valid Boolean expression.
Select Name, StandardCost, ListPrice, (ListPrice - StandardCost)/StandardCost * 100,
case
when (ListPrice - StandardCost)/StandardCost * 100 <>
when (ListPrice - StandardCost)/StandardCost * 100 between 50 and 99 then 'Not Bad'
else 'Superb'
End [Profit]
from Product
SELECT ProductNumber, Name, 'Price Range' =
CASE
WHEN ListPrice = 0 THEN 'Mfg item - not for resale'
WHEN ListPrice <>
WHEN ListPrice >= 50 and ListPrice <>
WHEN ListPrice >= 250 and ListPrice <>
ELSE 'Over $1000'
END
FROM Production.Product
ORDER BY ProductNumber
Select AddressID, AddressLine1,
case
When AddressLine1 like '%Street%' or AddressLine1 like '%St.%' or
AddressLine1 like '%Ave%' or AddressLine1 like '%Rue%' then 1
else 0
End IsStreet
from Address
14 Ağustos 2009 Cuma
Best Way convert C# DateTime format to a SQL DateTime
11 Ağustos 2009 Salı
Veritabanı bağlantısı oluşturulamadı.
10 Ağustos 2009 Pazartesi
Xml dosyalarının .NET Ortamında C# ile Okunup, Yazılması Örnek 2
Xml dosyalarının .NET Ortamında C# ile Okunup, Yazılması Örnek 1
Xml dosyalarının .NET Ortamında C# ile Okunup, Yazılması
30 Temmuz 2009 Perşembe
How to Change MSSQL 'SA' password
2. Navigate to the "Logins" object under the "Security" folder on the SQL Server you wish to administer. Then, right click on the 'sa' account and select "Properties".
3. Now, enter a new password in the "Password" field under the "Authentication" options.
How to uninstall MSSQL server 2008
Here you will find an executable file which will do it for you:
c:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Release\x86\SetupARP.exe
Yukarıdaki klasöre giderek SetupARP.exe dosyasını
çalıştırırsanız
size ne yapmak istediğinizi soracaktır. Tamir etmek
isterseniz repair' ı seçebilirsiniz.
Kaldırmak için ise Remove' u seçmeniz yeterli olacaktır.
29 Temmuz 2009 Çarşamba
Task failed because "LC.exe" was not found, or the correct Microsoft Windows SDK is not installed
Hatasında Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5. tekrar yüklenirse hata çözülecektir fakat bu biraz zaman alıyor. Bağlantınızın iyi olması bu zamanı kısaltabilir.
Download Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5.
Visual Studio 2008 Setup - A problem has been encountered while loading the setup components. Canceling Setup.
This error comes up when trying run setup (for uninstall or for upgrading). This is caused by a hotfix that is installed by Windows Update. To solve this, uninstall the KB952241 hotfix, reboot, then run VS2008 setup once more.
This hotfix is supposed to close a security loophole that exists for machines with Visual Studio 2008 installed.Click here for details.
If you couldn't solve the problem you'll need a uninstaller of ms here you can find it.
Bu hata steup dosyasının tekrar (upgrade yada uninstall için) çalıştırılmasıyla ortaya çıkar. Bu genellikle Windows update tarafından yüklenen bir Hotfix' den kaynaklıdır. Bu problemi çözmek için Program ekle kaldırdan (Güncelleştirmeleri gösteri seçerek) KB952241 Hotfix' ini kaldırıp. Bilgisayarınızı tekrar başlatın. Daha sonra tekrar VS2008 setupu çalıştırıp sorununuzu çözebilirsiniz.
Daha fazla bilgi için tıklayınız
Hiçbir şekilde sorununuzu çözemediyseniz burdan ms'in uninstallerini indirip VS2008 i kaldırabilirsiniz.
Ms Sql' de tüm tabloların Schema adlarını değiştirmek!
sp_MSforeachtable 'ALTER SCHEMA dbo TRANSFER ?';