Viewing 15 posts - 376 through 390 (of 1,166 total)
It depends on what edition of sql and windows you are using...
If you are using SQL SE then scrach the folllowing...
If this server is not part of the cluster then...
February 2, 2007 at 4:09 pm
Take it easy... there is nothing wrong to aplogize...
As I mentioned ... if you want to change you have to use it ALTER DATABASE...MODIFY FILE... command...
Note: When you restore again...
February 2, 2007 at 4:03 pm
First move this thread to correct topic so that you can get fast and accurate answer...
Did you check in the job step at the bottom of general properties tab...package location...
February 2, 2007 at 4:00 pm
Check the thread ... it may answer your question..
http://msdn2.microsoft.com/en-us/library/ms995334.aspx
February 2, 2007 at 3:55 pm
sp_helpdb returns two result sets... first resut set NAME column is the database name and should be different....It can't be the same...
Second result set NAME column is names of logical database...
February 2, 2007 at 3:42 pm
Just I want to make sure you are using 2005 so that i asked to post @@version output...
Try to restore through Query Window using RESTORE DATABASE command...
Are you overwriting the...
February 2, 2007 at 1:56 pm
I don't think you can write trace data directly to table using procedures...
You can write to a file and use fn_trace_gettable function to copy the trace file to table...
February 2, 2007 at 1:40 pm
The following script gives you the details with step execution times...
You can modify based on your needs...
select step_name,'run_date'= cast(h.run_date as varchar(8)),
'run_time'= replicate('0',6-len(h.run_time))+cast(h.run_time as varchar(6)),
'run_datetime' = left(cast(h.run_date as varchar(8)),4)+'/'
+substring(cast(h.run_date as varchar(8)),5,2)+'/'
+right(cast(h.run_date...
February 2, 2007 at 1:34 pm
You Mean your log size is 819200 KB and used log size is 819200 KB?
What is the recovery model of th db?
Tell .ldf file size total, used and free space?
Are...
February 2, 2007 at 1:25 pm
Please post your requirement and exact question to get correct reply...
February 2, 2007 at 1:08 pm
What cuased this db to go into recovery mode?
You can use ALTER DATABSE with EMERGENCY option... check BOL for syntax..
http://msdn2.microsoft.com/en-US/library/ms174269.aspx
Note: Before setting it to emegency mode check why...
February 2, 2007 at 1:03 pm
Did you installed SQL SERVER 2005 sp2 CTP because SP2 is not released?
Post the output of SELECT @@VERSION...
The following article applies to SQL 2000..
http://support.microsoft.com/kb/833710
February 1, 2007 at 11:44 pm
How is the SNAPSHOT which is doing bcp?
what is very current log size and used size?
how much free space do you have on the disk?
Is transaction log file growth configured...
February 1, 2007 at 7:10 pm
Your transaction log will not be truncated until the transactions are replicated to subscribers so there is a chance of growing tlog...
As long as you have free space there is...
February 1, 2007 at 3:36 pm
How to....... configure one-way merge replication? | |
Add -ExchangeType to the merge... |
February 1, 2007 at 3:30 pm
Viewing 15 posts - 376 through 390 (of 1,166 total)