Viewing 15 posts - 45,631 through 45,645 (of 49,571 total)
All of the backups, other than the last transaction log backup must be restored WITH NORECOVERY. Once any backup has been restored WITH RECOVERY, no more backups can be applied...
July 17, 2008 at 11:57 pm
It might be a concern, it might not. Without the query, that's about all that can be said.
July 17, 2008 at 11:54 pm
Provided its from the same version of SQL, it can be restored. See the above link for details on how.
July 17, 2008 at 11:53 pm
angie stein (7/17/2008)
July 17, 2008 at 11:50 pm
Table spool/lazy spool is a temp storage of a interim resultset so that the query processor doesn't have to regenerate the resultset. Often found with sorts, aggregations in subquery, linked...
July 17, 2008 at 5:22 am
michael vessey (7/17/2008)
added benefit of this is that you can run...
July 17, 2008 at 5:03 am
Or you can use the newer DMVs
SELECT count(*) from sys.dm_exec_connections
You can also get the IP address fron the same dmv
SELECT login_name, HOST_NAME, client_net_address
FROM sys.dm_exec_connections c INNER JOIN sys.dm_exec_sessions s...
July 17, 2008 at 4:32 am
It is possible to restore MSDB, but the process is not the same as for one of the user databases.
July 17, 2008 at 4:28 am
xp_cmdshell with the appropriate proxy account created.
Look up proxy aaccounts in books online. You don't have to be admin to execute xp_cmdshell
If you're using stored procedures, consider the EXECUTE...
July 17, 2008 at 4:05 am
Mike, as GSquared suggested on another thread, perhaps you should consider getting a competant SQL consultant in to help you with the myriad of performance problems that you seem to...
July 17, 2008 at 1:43 am
Perhaps you would like to post the query, the table structure and the indexes?
For now, it looks like the plan that the optimiser picked (the coverign index with a scan)...
July 17, 2008 at 1:39 am
It's a red flag. It means that a sort or hash couldn't fit into memory and was forced to disk. Either you;re doing massive hashes and/or sorts, or you're low...
July 17, 2008 at 1:34 am
phoenixrising1599 (7/16/2008)I have min and max server memory set to default (dynamic configuration)
I would recommend changing that. On 64 bit with lots of memory, SQL's more than capable of using...
July 17, 2008 at 1:30 am
Just converting them to stored procs, probably not.
To fix deadlocks, you need to identify the cause of that deadlock and fix that. It's probably bad code, bad indexes or...
July 17, 2008 at 1:23 am
Looking at that, my first pass suggestion for indexs (without any testing done) would be:
ParentTable
- Clustered index on the primary key.
- Possible nonclustered index on Col2, Col3 (if they...
July 17, 2008 at 12:51 am
Viewing 15 posts - 45,631 through 45,645 (of 49,571 total)