Viewing 15 posts - 30,601 through 30,615 (of 39,823 total)
What I'd first recommend is that you get a list of queries that are run often and then search through those to see if you can improve their performance. You...
December 2, 2007 at 12:42 pm
Keep the log and data together if you don't have another volume. You want them protected.
The error has nothing to do with log and data files. It sounds like the...
December 2, 2007 at 12:39 pm
I don't and a few searches haven't turned up anything. Have you tried the backupdevicecollection.
Or maybe one of the restore classes? That might grab the data from the backuphistory tables.
December 2, 2007 at 12:37 pm
I think that's the best approach and thanks for the update.
December 2, 2007 at 12:32 pm
Actually I tend to postfix so I can group similar functions together. I want the
uspSalesGetforQuarter
right next to the
uspSalesGetAllforSalesman
As opposed to
uspGetAllSalesforSalesman
uspGetAllProductsforCustomer
...
uspGetSalesforQuarter
I've found that it's pretty easy to identify the major...
December 2, 2007 at 9:31 am
OK, you have 3 large questions and I'm not sure about #2. Need a BI/SSAS person to answer or give hints. I will say that you need to determine if...
December 1, 2007 at 3:58 pm
SQL Server 2008 will have things built in to help ensure that the files are synchronizes with the data, they can be backed up, but also queried with T-SQL.
There is...
December 1, 2007 at 3:53 pm
In a cluster, each individual instance needs to be reset if those host names are changing. They will bind to the IP of that server.
If the IP of the virtual...
December 1, 2007 at 2:28 pm
Yes, as far as checking to see if indexes are being used, you can use the DMVs so see what's being used.
This blog post can help: http://blogs.msdn.com/sqlcat/archive/2006/02/13/531339.aspx
December 1, 2007 at 2:27 pm
As a compromise, you might prefix things with sp only, as in spMyProc. This doesn't cause the performance issues.
Or you could do uspMyProc, which is something I've seen. A short...
December 1, 2007 at 12:46 pm
You can monitor fragmentation with dbcc showcontig and then based on the results, decide which indexes you want to rebuild. Lots of scripts here on the site.
Other than that, SQL...
December 1, 2007 at 11:54 am
You need to create a connection on Server A, then perform the backup using this connection.
An ActiveX task is needed to perform the copy. The FileSystemObject in VBScript is probably...
December 1, 2007 at 11:53 am
The IP doesn't matter. SQL Server will bind to the host's ip.
The name does matter. You need to run
sp_dropserver
sp_addserver , local
and then restart SQL server.
December 1, 2007 at 11:50 am
Good points.
December 1, 2007 at 11:49 am
Either book is fine. I'm partial to Brian's book, but he's a business partner of mine, so I tend to use his resources.
I'd also look at sqlis.com
December 1, 2007 at 11:47 am
Viewing 15 posts - 30,601 through 30,615 (of 39,823 total)