Viewing 15 posts - 271 through 285 (of 360 total)
RBarryYoung (12/23/2008)
They were probably talking about query hints to force the use of a particular index.
Hey How did you know... were you running the interview! :w00t:
December 23, 2008 at 8:04 pm
Option 4 is to purchase a third party CDC tool that writes to a remote server from your active log file.
Just putting it out there.
~BOT
December 12, 2008 at 4:02 pm
Are you saying how can you programmatically check?
because trying to log in with SSMS is probably a good first place to start for most people.
:hehe:
~BOT
December 12, 2008 at 3:52 pm
If you go with 2, make sure you know what you're getting into. There's a lot going on under the hood with Kerberos delegation. Best to know it very...
December 12, 2008 at 3:42 pm
Thanks for your help, but I figured it out.
It uses a CTE and row_number() over().
with temp1 as (
select packagename, stepname, dbname, stepstarttime, row_number()
over( partition by packagename, stepname, dbname ...
December 11, 2008 at 11:54 am
bcp.exe is a Microsoft-provided utility used to bulk insert data.
Bulk insert is what's going on behind the scenes in the import/export wizard anyway...
There are advantages to bulk inserting data,...
November 20, 2008 at 8:33 am
Your plan won't work, but I can offer some advice.
4 million rows isn't tiny, but it isn't that big, either. It shouldnt' take 5-6 hours to load from one...
November 19, 2008 at 3:57 pm
I have hope that you could use the over() clause, maybe with a WITH() subquery joined in ?
might need a CASE thrown in for good measure.
http://msdn.microsoft.com/en-us/library/ms189461.aspx
you'll need to be far...
November 19, 2008 at 3:48 pm
Take the backup.
Scripting only generates the DDL (database definition language) that creates the table, not the select/insert/update/deletes that happen.
backup early, backup often, and run a RESTORE VERIFYONLY just to see...
November 19, 2008 at 3:39 pm
That's WMI.
It's a WQL query you're seeing in the log details, and winmgmt is the WMI service.
November 19, 2008 at 3:35 pm
checksum() and checksum_agg() and INFORMATION_SCHEMA.COLUMNS
might help you out.
~BOT
November 19, 2008 at 3:33 pm
I've dabbled a bit with SB from a custom maintenance job perspective and might have some insight.
What you can do is set up a queue on each server and let...
November 19, 2008 at 3:15 pm
Like all good answers, it depends...
the copy database wizard uses data pumps and takes longer, if I recall correctly, it also /can/ leave agent jobs hanging around on your production...
November 19, 2008 at 3:05 pm
Peter,
I think you'll like the next article which is about knowing what is the DBA's responsibility and saying "NO!" to what's contradicts CIA and the systems you have designed...
November 19, 2008 at 2:47 pm
Viewing 15 posts - 271 through 285 (of 360 total)