Search Results

1
vote

SQL Server Service Broker Issue & Tutorials

Hi William In answer to your first question, hopefully, you'll see something in the sys.transmission_queue system view. See …
5
votes

T-SQL (2005/2008) Stored Procedure Execution ‘atomic’?

In addition to placing the code between a BEGIN TRANSACTION and END TRANSACTION, you might want to ensure that your transaction isolation level is set correctly. In this case, you want to ensure th …
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

How can you do a full outer join in sqlserver 2005?

Full outer joins should be supported by SQL Server 2005 - what makes you think they aren't? …
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 …