Viewing 10 posts - 1 through 10 (of 10 total)
Not completely sure what you are trying to get at but might try something like this:
select disctint @id = id from idtable
select @sp1 = sp1, @sp2 = sp2, @sp3 =...
August 3, 2009 at 9:02 am
That caused a 4 table update to only update some tables and not others and changes did not get rolled back in tables that had already been updated in the...
April 29, 2009 at 8:48 am
We used XACT ABORT ON where I worked. The biggest issue we had was if you were to call another stored proc within the stored proc using XACT...
April 28, 2009 at 8:35 am
You could also try detatching the databases, copying the MDF and LDF files to a CD, then reattaching them on the source server. Then copy the MDF...
April 28, 2009 at 8:30 am
It might take longer to create the index on the fly than the transaction is using at this time (30 minutes).
February 16, 2009 at 11:33 am
try casting your @sid to a varchar when you make set your query variable.
February 16, 2009 at 9:21 am
What are you doing with the 10 million records? Aggregating? Feeding into another application? The intended use of the records may provide...
February 16, 2009 at 9:19 am
Try setting your 2nd and 3rd parameters to allow nulls. That should let you process the report without requiring them to be filled in. ...
January 30, 2009 at 10:48 am
At the very least, rebuild the statistics on that database. Better yet, rebuild all indices on it. That should help the...
January 30, 2009 at 8:14 am
The error indicates that your connection information to the report server database in the rsreportserver.config file has become corrupt.
Please look at this article.
October 23, 2008 at 12:41 pm
Viewing 10 posts - 1 through 10 (of 10 total)