Viewing 15 posts - 526 through 540 (of 972 total)
Came across this SSC post
it contains this link: http://msdn.microsoft.com/en-us/library/ms191291.aspx
October 5, 2010 at 1:41 pm
FYI: There is a forum section for SQL Server 2000
October 5, 2010 at 10:52 am
Instead of all the PRINT statements (and cursor) this is what I had in mind.
exec sp_MSforeachdb '
USE ?
SELECT "ALTER DATABASE"
, DB_NAME()
, "MODIFY FILE ( Name ="
, name
, ", FILENAME =...
October 5, 2010 at 8:34 am
rpalacios 19022 (10/4/2010)set nocount on
declare @dbname as varchar(80)
declare @server_name as varchar(20)
select @server_name = @@servername
declare rs_cursor CURSOR for select name from master.dbo.sysdatabases where name not in
('model','master','msdb','tempdb') and filename like 'S:\Data\Test%'
open...
October 4, 2010 at 1:37 pm
You would create the script as the example shows, creating a command for each database. It would work the same way if you script out the dettach/attach process.
You can...
October 4, 2010 at 12:10 pm
If you are just moving them to another drive and keeping the same folder structure using ALTER DATABASE may be less overhead. See this link.
--This is from the link...
October 4, 2010 at 9:59 am
What else is leading you to believe it is slow, other than what you saw in Task Manager?
October 1, 2010 at 3:10 pm
http://msdn.microsoft.com/en-us/library/ms177596.aspx
It should show you the tables you have in your database.
Actually according to this: http://msdn.microsoft.com/en-us/library/bb522526.aspx It is used to define table-valued parameters for stored procedures.
September 30, 2010 at 7:12 am
http://msdn.microsoft.com/en-us/library/ms190203(v=SQL.90).aspx
In case you want to read on it.
September 29, 2010 at 12:33 pm
Changing recovery model does not terminate any connections to the database.
September 29, 2010 at 12:31 pm
blacklabellover2003 (9/29/2010)
Hi all,How would I rewrite this query to yield all routings that end in '1' ?
Would something like this work?
select top 100 *
from dbsrvr2.queues.dbo.OUTqueue2 a (nolock)
where...
September 29, 2010 at 12:25 pm
What OS are you running (32-bit/64-bit)?
September 29, 2010 at 12:18 pm
Can you provide the script or link to it that you are using?
Are all the directories you have referenced in the script valid?
September 28, 2010 at 12:15 pm
You might try checking also how many records are in the table holding the job history. I've seen the GUI timeout just cause there were so many records to...
September 28, 2010 at 9:00 am
I watch the server's resource usage during all of this and it's next to nothing.
You might watch the network resources on the server, if you have not already. Maybe setup...
September 24, 2010 at 9:47 pm
Viewing 15 posts - 526 through 540 (of 972 total)