Select as a XML MSSQL C.GULDOGAN 4:40 PM In Mssql you can get select result as XML by using following TSQL statement SELECT * FROM TableName FOR XML path, root; Read More
Alter column size Oracle C.GULDOGAN 8:17 AMTo Alter column size in Oracle you may use the following query. It helps if your size of input doesn't fit your column. ALTER TABLE... Read More
IF Sum is null convert it to 0 (zero) C.GULDOGAN 1:03 AM Oracle you may use the query below to convert SUM of totalPrice to zero when SUM result is null by using COALESCE select COALESCE ( S... Read More
Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed. C.GULDOGAN 3:54 PMYou will face this problem in VisualStudio 2008. If you install and uninstall SQL Server Express 2005 on your system , you will see this err... Read More
Datagridview Kullanımı C.GULDOGAN 4:41 PMDaha önceki yazımda database'i projemize ekledik.. Şimdi bir form application da database'imizdeki verileri nasıl çekeceğiz ve kulla... Read More