My Blog

All about my activities, Ideas and everything.

Category: SQL Server

C# and SQL Express : Embedded SQL Server Express with custom application

Well, with my “Trinop” project that is built with C# .NET and SQL Server Express edition. However, the diffcult part is that when I deploy the application to end-user, the installation is very hard, becuase the use has to install SQL Server first and the install my program. At least, it’s hard for some people. [...]

SQL Server : Comparing date without time

I’m facing such problem which is comparing date with full datetime field. So, the problem is when I want to compare full datetime field that contains time. It will return 0 row, because sql server will also compare time too. No matter you have the exact same date, but you have the different time. This [...]

HowTo : SQLServer 2005 : Exclusive access could not be obtained because the database is in use

“Exclusive access could not be obtained because the database is in use” I got stuck with this error couple days, so mad. I found this solution in this topic, it works fine for me, anyway here’s the solution When you want to restore database in SQLServer you must use ‘master’ database run command. If it [...]