Viewing 15 posts - 3,796 through 3,810 (of 9,643 total)
In theory doing a TOP N without an Order By could pull different results every time regardless of using nolock.
I just did a quick test on my version of AdventureWorks...
November 18, 2009 at 11:46 am
Lynn Pettis (11/18/2009)
ARRRGGGGG!!!!!!!I really need to go out to the desert!! Anyone want to join me??
Thanks, now you got me sucked in. I agree with the others,...
November 18, 2009 at 11:25 am
forumdog (11/18/2009)
November 18, 2009 at 11:23 am
You can use VSS with SSIS. I have done it.
November 18, 2009 at 8:27 am
It depends on what events you are tracing. If you are tracing RPC:Completed, TSQL:BatchCompleted then you have textdata which shows the query that they are running.
November 18, 2009 at 8:25 am
You could do that by doing an DBCC CHECKIDENT() (See BOL for details), but it is really not the best way to do it. I'd be more likely to...
November 18, 2009 at 8:23 am
I would add a second step within the 4 each file enumerator and move the processed files to an archive folder.
November 18, 2009 at 8:14 am
You should be successful with the data conversion transform by converting the column from unicode to non-unicode.
November 18, 2009 at 8:12 am
Switching to 2008 and using Filestream may help.
You could also create a new filegroup and move your single table with the BLOB data to a file in that filegroup. ...
November 18, 2009 at 8:07 am
I'd agree with the posts thus far. Cursors are often necessary for administrative tasks (backups, index maintenance, etc...), but rarely if ever needed for data retrieval and modification. ...
November 18, 2009 at 7:54 am
You could query it out of msdb using a linked server. Something like:
SELECT
B3.physical_device_name
FROM
linked_server.msdb.dbo.backupset AS B JOIN
linked_server.msdb.dbo.backupmediafamily AS...
November 18, 2009 at 7:39 am
This is a duplicate post and there are other answers here.
November 18, 2009 at 7:23 am
You did not include the foreign key definitions with your table scripts. Based on what you did share, I would guess that the problem is that the CapturedDate you...
November 18, 2009 at 6:49 am
Great series Gail. Glad you mentioned the index intersection in this article, I've always had questions about that.
November 18, 2009 at 6:29 am
We still need the table definition and sample data like Gail (GilaMonster) asked? Your execution plan shows a clustered index scan, which essentially is a full table scan, so...
November 18, 2009 at 6:21 am
Viewing 15 posts - 3,796 through 3,810 (of 9,643 total)