Search Results

5
votes

How to clear connections in Sql Server 2005

Shameless Plug: How to kill all processes …
0
votes

can I configure hibernate properties to connect without using an instance name to sql server 2005?

Yes, you can. You set it up as you normally would in the connection string: Server=(local);initial catalog=MyDataBase;Integrated Security=SSPI …
17
votes

how to read the last row with SQL Server

If you're using MS SQL, you can try: SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC …