Viewing 15 posts - 1,456 through 1,470 (of 49,571 total)
SSIS and bcp/bulk insert should be about the same speed, and faster than lots and lots of INSERT INTO statements, as they have the bulk-loading optimisations.
175GB isn't that...
May 10, 2017 at 8:36 am
Can you post the table definition (all of it)?
Do you have either of the ALLOW_SNAPSHOT_ISOLATION or READ_COMMITTED_SNAPSHOT_ISOLATION database settings on?
May 10, 2017 at 7:21 am
Don't script out the data. Script out the database structure, bcp (or SSIS) for the data.
May 10, 2017 at 7:10 am
May 9, 2017 at 2:21 pm
Query returns 2 rows on SQL 2016 SP1

Plus, the title for the question is misleading. Afaik, there's no guarantee that if there are multiple indexes created on...
May 8, 2017 at 5:36 am
WHERE Registrations.CourseId NOT IN (
SELECT Registrations.StudentId
Is that ever going to work?
That's like saying "Give me all the employees...
May 7, 2017 at 2:44 pm
May 7, 2017 at 5:50 am
May 5, 2017 at 8:42 am
Seriously, avoid this kind of design. It smells like an EAV table, and those are so hard to work with and perform terribly. I've seen them far too often, and...
May 5, 2017 at 7:55 am
Use the GUI, script out the command instead of running it, cancel the gui.
May 5, 2017 at 7:46 am
What's the exact command that you're running for the restore?
May 5, 2017 at 7:07 am
To explain...
The NO_WAIT option on the ALTER DATABASE means that if the exclusive DB lock cannot be obtained immediately, the command should abort, not wait to try and...
May 5, 2017 at 7:04 am
peter.adams 60541 - Friday, May 5, 2017 2:14 AMIt's probably the length of the script.
Please note: 5 year old thread.
May 5, 2017 at 3:27 am
May 5, 2017 at 3:26 am
Roughly:
SELECT whatever you need FROM Courses WHERE CourseID NOT IN (Select the courseIDs from Registrations for that student)
May 4, 2017 at 4:11 pm
Viewing 15 posts - 1,456 through 1,470 (of 49,571 total)