Viewing 15 posts - 42,991 through 43,005 (of 49,571 total)
Try putting a check just before the exists, run the proc from management studio and see what you get back.
SELECT @foundFolderId
SELECT * FROM pageList WHERE folderID = @foundFolderId AND...
November 25, 2008 at 11:29 am
Multiple separate RAID arrays is best. The log and data files should be physically isolated from one another.
November 25, 2008 at 11:17 am
supatpong (11/25/2008)
Thank you for many support. Now I trying to find software tool.
Don't bother. All the log reader tools need the database to be online. Besides, all that you'll...
November 25, 2008 at 11:06 am
Exists doesn't return false results.
Are you sure that the variables are such that rows may not exist? Maybe put a statement just above that to insert the rows that...
November 25, 2008 at 10:53 am
It's not a new concept. It existed on SQL 2000 as well. Probably 7 too, though I don't have any docs.
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/sqlbackuprest.mspx
Significant quotes:
Tail of transaction log
The transactions that have been committed...
November 25, 2008 at 10:26 am
Lynn Pettis (11/25/2008)
(P.S. Glad to have you back on the site. Hope you enjoyed your time here in Seattle!)
Loved every minute of it. I just got back to SA...
November 25, 2008 at 10:19 am
Looks OK. I can't see a logic problem.
The count is not necessary and it's expensive, doubly so since you're doing a count of the column, not count(*)
Try changing the count...
November 25, 2008 at 10:15 am
Can you please fix the wrapping?
What's the proc supposed to do?
November 25, 2008 at 10:13 am
You can query the sys.dm_exec_requests for requests with a blocked_by that's not 0 and a wait_time exceeding your threshold.
November 25, 2008 at 10:10 am
Can someone give me a hand with this one? The earliest I'm going to have a change to sit down and work out some code is tomorrow afternoon when I...
November 25, 2008 at 10:09 am
It's doable. However, unless you can actually give us an example of the data (not a description, not the file extention) then it's not going to be possible to offer...
November 25, 2008 at 10:05 am
llokshin (11/23/2008)
November 25, 2008 at 9:29 am
I didn't ask for the entire proc. I said, if you want us to do all of the work for you, give us table definitions (as create table statements), sample...
November 25, 2008 at 9:27 am
The login name is not a valid identifier. Put square brackets around it.
November 25, 2008 at 9:26 am
Index rebuilds are logged operations and hence will cause tran log growth. There's nothing wrong.
You can switch to bulk-logged for the duration of the rebuild to reduce the impact on...
November 25, 2008 at 9:23 am
Viewing 15 posts - 42,991 through 43,005 (of 49,571 total)