1
vote
How can I query the name of the current SQL Server database instance?
You can use DB_NAME :
select DB_NAME()
…
4
votes
Insert a fixed number of rows 2000 at a time in sql server
You can use the SELECT TOP clause: in MSSQL 2005 it was extended allowing you to use a variable to specify the number of records (older version allowed only a numeric constant)
You can try …
0
votes
Workaround for Spring/Hibernate due to non-standard behaviour of UNIQUE constraint in MS SQL
I have no experience in Hibernate, so I don't know if you are free to change the DB at your will or if Hibernate requires a specific DB structure you cannot change.
If you can make changes …
