1
vote
How to determine the datatypes of the results of a SQL?
You can run the query with SET FMTONLY ON, but that might not help you to easily determine the data types returned, since you're working in management studio only.
If it was me, I think I'd create …
0
votes
Confused how this query works
As Quassnoi says, this is where @EmpId get's incremented:
SET @EmpID = (SELECT MIN(EmpID) FROM dbo.Emp WHERE MgrID = @Root AND EmpID > @EmpID)
And yes, when the …
1
vote
Exception handling around the rollback of a SqlTransaction
I agree with Marc that the problem is likely to be within the stored procedures themselves.
There's a quite interesting article outlining a few issues …
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 …
