Viewing 6 posts - 31 through 36 (of 36 total)
I forgot to add that the SQL Server driver on one server is 3.50 and 3.60 on the other. I realize that these are super old and I believe...
December 5, 2002 at 9:10 am
Try using exec sp_spaceused 'tbl_TableName'
This returns how many rows and how much space the table takes up and the indices too.
December 5, 2002 at 6:23 am
I think they are both basically the same except you can't use set to get data from a table.
SET @Counter = @Counter + 1
SELECT @Counter = COUNT(ID) FROM...
November 28, 2002 at 1:31 pm
Makes sense. Thanks again. I thought I was going to have to do some sort of hack trigger that converted it to it's CHAR value.
November 26, 2002 at 9:19 am
That worked!! Thanks!
Can you explain why it worked? Shouldn't it be SQLINT if it is going to an INTEGER column?
November 26, 2002 at 9:07 am
Have you tried sorting the results based on the priority of the two records and then taking the TOP 1. Therefore if the query returns more than one row...
October 31, 2002 at 7:05 am
Viewing 6 posts - 31 through 36 (of 36 total)