0
votes
Inherited SQL Server Database Problem
How about if you ran an SQL Server Profiler session (assuming you're using SQL Server 2005+)? This tool will show the queries being executed by the application. If the next ID really is being store …
1
vote
Concurrency Checks in MSSQL (Alternatives to TSEQUAL)
See http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=126933 …
0
votes
SQL Server 2005 - Is there a way to lock a SELECT in a Transaction?
You'll need an isolation level of SERIALIZABLE:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
The other SELECT queries will block until th …
1
vote
CLR UDF returning Varbinary(MAX)
If you define it as returning a SqlBytes data type, this should correctly map to varbin …
2
votes
Scripting individual database objects
In SQL Server 2005 SP2, this is supported. If you select the option, it will give you files named after the objects, but also including the type of the object in the file name.
…
1
vote
Pre-Deployment in Database project
This might not be exactly what you're after but it might help you to work around your problem. after a quick look, I think the sequencing of the pre- and post- deployment scripts might be too diffi …
6
votes
How to detemine content type of binary data in the image field of SQL Server 2008?
I think that, if you need that information, it would probably be better to store it in a separate column. Once it's in the DB, your only options really are guessing it from the file name (if you ha …
