Viewing 15 posts - 61 through 75 (of 155 total)
Assuming Sales database has one mdf with name is sales_data and one ldf with name sales_log
use following command pattern to accomplish your requirement:
restore database Sales_Readonly from disk='specify bak file...
April 17, 2008 at 3:33 pm
Can you post output of :
DBCC SQLPERF (umsstats)
An additional thing, Since you have 16 CPU on that box so you should configure 352 worker thread (per MS)
April 17, 2008 at 1:41 pm
It indicates that you have not stopped trace and trying to copy file. To verify this run following query
select * from fn_trace_getinfo(default)
you need to stop trace before you copy...
April 17, 2008 at 1:20 pm
Yes, It is possible to select space between two words.
April 17, 2008 at 1:12 pm
This error indicates that system is running out of virtual memory. My suggestion would be to check RAM.
April 17, 2008 at 1:08 pm
Did you try stopping full text service and then performing delete index thru SSMS?
April 16, 2008 at 1:26 pm
Please explain what behavior you are referring to.
April 15, 2008 at 3:18 pm
hmmm same hpnd with me once and when I tried experimenting in detail I found it happens once you try to process more than 9 gb file. Weird but no...
April 15, 2008 at 3:14 pm
I think you are using different user for both jobs. Please verify whether user used in failed job has proper access.
April 15, 2008 at 2:53 pm
You need to impersonate an id that can allow other user to access link server. You need to set this under Security tab of your linked server properties.
You can either...
April 8, 2008 at 3:16 pm
Yes, you can use it but downside is that, because the statement does not issue any locks against the tables being read, some "dirty," uncommitted data could potentially be read.
April 8, 2008 at 3:06 pm
If existing data and log files for all databases are ok then You should use data and log files for system databases after installing sql server provided you are installing...
April 6, 2008 at 12:45 pm
Viewing 15 posts - 61 through 75 (of 155 total)