3 Mayıs 2010 Pazartesi

How to delete a folder which has files? in C#

Directory.Delete(directoryname, true)

24 Nisan 2010 Cumartesi

The ' ' character, hexadecimal value 0x20, cannot be included in a name.

An XmlElement is something that look a bit like "" in
XML. If it has a space, then it won't be an element any more, because
that would make it look like "", and the 'thing' would look
like the start of an attribute.

So, either you need to rule out spaces, or you need to devise some
escaping mechanism to substitute the spaces with some other characters.

Select Only Year of Datetime MSSQL

SELECT DISTINCT CONVERT(CHAR(4), @DatetimeValue, 120) as Year
FROM Events

Select Only Month of Datetime MSSQL


SELECT DISTINCT CONVERT(CHAR(3),@DatetimeValue, 100) as MONTH
FROM Events


6 Nisan 2010 Salı

this server version is not supported. you must have microsoft sql server 2005 beta 2 or later

Microsoft Visual Studio 2005 Service Pack 1 Update for Microsoft SQL Server 2008 Support

Brief Description
This update enables developers to use Microsoft Visual Studio 2005 Service Pack 1 with Microsoft SQL Server 2008.

Download & Install it:

31 Ocak 2010 Pazar

Birazda başka şeylerden bahsedelim!



Hep nefret ederdim o anason kokusundan... Tadı ve kokusu çok kötü gelirdi ta ki kuzenim dertli olduğum bir akşam denize karşı beni bir masaya oturtup bekle diyene kadar. Gitti içeriye ben hala masada boş boş hayatımda olan şeylere üzülüyorum... Önce mezeler geldi, meyve salatası, haydari, beyaz peynir, ezme vb... sonra rakı... Meğersem içmesini bilmiyormuşuz, bütün derdim tasam hepsi gitti. Evde biraz içilmiş eniştemlerin büyük rakısı vardı, hepsini bitirmişiz iki kişi :) O günden sonra ne anason kokusu rahatsız etti nede hayatımdaki dertler iyiki varsınız Dostlarım ve Rakım!

30 Eylül 2009 Çarşamba

MSSQL CREATE UNIQUE NONCLUSTERED INDEX

CREATE UNIQUE NONCLUSTERED INDEX [IX_INDEXNAME] ON TABLENAME
(
COLUMNNAME ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO