Viewing 15 posts - 46 through 60 (of 2,483 total)
Vera-428803 (10/3/2010)
When we started with it, we thought it was a good idea to have a...
October 4, 2010 at 6:28 am
Database Developers and those developing on databases, should know enough to code efficiently without having it "...always fall to the DBA."
If you're in the position of being the sole database...
August 24, 2010 at 3:56 am
wbrianwhite (7/31/2010)
Just a note, non-clustered indexes (what you make when you do a covered index) reduce the performance of your writes. This is because on insertion or updates, the indexes...
August 3, 2010 at 2:14 am
Nadrek (7/30/2010)
When writing new SQL, why not take a little more time and do it well, instead of randomly? For existing bad SQL, most often I see that a...
July 30, 2010 at 6:20 pm
The cost of adding and updating the indexes is actually a lot smaller than it's made out to be. Only under extreme change (meaning...
July 30, 2010 at 1:44 pm
You could always use good old Windows Task Scheduler with OSQL/SQLCMD.
July 29, 2010 at 11:30 pm
Best option would be to upgrade to SQL 2008 R2 and take advantage of the backup compression. Failing that, grab hold of a third-party compression tool. There are quite a...
July 29, 2010 at 11:26 pm
Are you using any third-party backup utility?
We're using the freeware version of Idera SQLSafe on one of our servers. This causes backups for multiple databases to be performed synchronously. When...
July 29, 2010 at 11:15 pm
Nadrek (7/29/2010)
Pull up SQL Server Profiler, and watch the SQL:BatchCompleted and/or RPC:Completed numbers for CPU, Reads, Writes, and Duration. Know which is most...
July 29, 2010 at 11:02 pm
Stan Kulp-439977 (7/14/2010)
I was just trying to show you why I...
July 14, 2010 at 7:51 am
Stan Kulp-439977 (7/13/2010)
Is there an event handler to get the time stamp of a source data file being extracted by an SSIS package?
Sorry, but I'm not going to provide the...
July 13, 2010 at 11:12 pm
One thing I can think of at the moment is to check that you have Package Logging enabled in the Child Package as well as the Parent Package.
Don't have a...
July 13, 2010 at 5:08 pm
Bill Galashan (7/12/2010)
July 13, 2010 at 4:17 am
Yeh, was planning to post it, but was rushed with the earlier posting 😀
Just replace
"<< YOUR SERVER >>" with server name
"<< INSTANCE >>" with instance name, or DEFAULT...
July 7, 2010 at 4:41 pm
I have a script that runs in a Powershell script step of a SQL Agent job to do this.
Makes deployment pretty easy as it's just T-SQL to create the SQL...
July 7, 2010 at 6:50 am
Viewing 15 posts - 46 through 60 (of 2,483 total)