Viewing 15 posts - 1,396 through 1,410 (of 2,436 total)
If you're using a 'work' email account like I am maybe you can have a quick chat with the email/exchange admin. We've implemented a number of new and diffrent technologies...
April 13, 2006 at 2:30 pm
Sometimes SPs just won't do - especially if there is a lot of DDL involved. For these 'special' cases I'd use CmdExec and OSQL instead !
April 13, 2006 at 2:20 pm
Only if the solution uses sp_MSforeachtable ... LOL !
April 13, 2006 at 2:17 pm
'Recovery Mode' anybody ??? Ultimately this affects how an individual database reacts to the command listed in the beginning of the post. e.g. 'Simple Recovery' does not require a full...
April 13, 2006 at 1:45 pm
I'd opt to make the owner 'sa' - this login always exists on every SQL Server. Whereas 'aaron' or another arbitrary name might not, then causing you potentially many issues....
April 13, 2006 at 1:39 pm
Check out this link: http://www.connectionstrings.com/
It has a Paradox section and 'stuff' that relates to Access and .NET. So I'd guess you could convert that information into an Openquery. Unfortunately...
April 13, 2006 at 1:32 pm
Tell your AD guy to hit the books on networking. This has absolutely nothing to do with AD at all it's in DNS management. However you must be a Domain...
April 13, 2006 at 10:24 am
Round III
Profiler - you're already there
Query Hints
April 12, 2006 at 11:13 am
It all boils down to choice. The choice to state (and believe in) the words Yes or No.
April 12, 2006 at 11:10 am
I'd opt for using a DNS alias - it's the quickest and easiest way. Besides, this then has absolutely no impact on the cluster or the physical nodes.
April 12, 2006 at 10:50 am
Trick answer:
4) Other --> alter database [database_name] set AUTO_SHRINK on
This shrinks both the data and log portions of the database whenever the SQL Server engine feels it has the time....
April 12, 2006 at 10:46 am
I'm curious as to what Bill uses for a screen saver ... maybe it's:
http://www.sysinternals.com/Utilities/BlueScreen.html
April 12, 2006 at 10:24 am
I would not remove the 'WITH RECOMPILE' if this is a batch type proc. The 'WITH RECOMPILE' option on a SP allows it to make use of the updated statistics...
April 12, 2006 at 10:12 am
Here's my 'short list' for tuning:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all tables
exec sp_refreshview for all views
Round II
DBCC DBREINDEX
...
April 11, 2006 at 4:54 pm
Have you looked into NET STOP ???
April 11, 2006 at 4:38 pm
Viewing 15 posts - 1,396 through 1,410 (of 2,436 total)