Viewing 15 posts - 16 through 30 (of 51 total)
SQL Books Online:
- Search for 'Estimating the Size of a Table' in the Creating and Maintaining Databases section.
Cheers,
Ken
August 18, 2004 at 6:43 am
Mark
Here's a little example that might help with your cursor elimination - at least for the ones that you want to loop through data and process each record individually.
SET NOCOUNT...
August 4, 2004 at 9:30 am
I usually go for table variables rather than temp tables where possible. You can create a primary key but can't create indexes on table variables though so if you need...
August 4, 2004 at 7:48 am
First of all, my condolences to you. Getting stuck with a lame app is no picnic. I've been there.
This type of situation forces me to <ug. management buzzphrase> think outside...
July 20, 2004 at 7:46 am
For what it's worth, I have log shipping set up and ran into a similar issue but not with DTS. Another data extracting tool was developed in-house using SQLDMO and...
June 28, 2004 at 2:17 pm
I'm curious: does the same DBCC error show up on the source?
June 3, 2004 at 8:24 am
Thanks for the flashback, Steve. I may not pre-date you but I'm close: my team supported Microsoft's corporate servers 'way back in the OS/2 days. (In case you're reading this, a big HEY...
June 1, 2004 at 10:03 am
Maybe I missed the point, but there are a handful of free query tools "out there" that seem to be pretty popular. I did a quick Google and came up...
May 28, 2004 at 8:01 am
I can sympathize with your confusion. IMHO I believe MS blurred the lines between disaster recovery and re-implementing log shipping "the other way" to your replacement ("original primary") server.
You are...
May 28, 2004 at 7:53 am
Here's an example to get you started. You can drop this in master if you like, then execute it. Open a second query window up and pummel pubs (the trace...
May 19, 2004 at 9:15 am
Profiler is merely the GUI front-end to a server side trace. You can write those yourself (see BOL-sp_trace_create or script out a trace from Profiler). I've written several and if...
May 19, 2004 at 5:51 am
...or identify the newest file in the folder (by file timestamp)...?
May 19, 2004 at 5:32 am
I'd agree with Julian - check the SQL Service rights. That's definitely a good place to start.
If you're using a [domain] login rather than a local login, and the domain...
May 7, 2004 at 4:52 am
Look up triggers in SQL BOL. If you choose to add the audit columns, you can use triggers to populate the columns without needing to modify your code to accomodate...
May 6, 2004 at 7:22 am
Viewing 15 posts - 16 through 30 (of 51 total)