Viewing 15 posts - 166 through 180 (of 536 total)
irena.bulatovic (10/28/2009)
Animal Magic (10/28/2009)
irena.bulatovic (10/28/2009)
October 28, 2009 at 8:44 am
espanolanthony (10/28/2009)
no that does not work
what do you mean it doesnt work??
i assume you replaced the MyTable with your tablename?
October 28, 2009 at 8:33 am
irena.bulatovic (10/28/2009)
October 28, 2009 at 8:32 am
umm thats fairly generic...
create procedure USP_DeleteMyData
@date datetime
as
Delete from MyTable where MyDate = @date
go
October 28, 2009 at 8:11 am
access is denied to cmdshell or the drive location? are you still using the mapped drive or the UNC path?
ps, note that xp_cmdshell will run under the sql server...
October 28, 2009 at 6:00 am
Nero-1119276 (10/28/2009)
declare @backup_file as varchar(200)
declare @neerav as varchar(200)
--Select media_set_id of last backup
set @logid=(select max(media_set_id) from
msdb..backupmediafamily
where physical_device_name like
'D:\Testdatabase%')
--Select exact backup device name if you create...
October 28, 2009 at 5:35 am
try using the proper UNC path and not a mapped drive
October 28, 2009 at 5:30 am
ok, its not permissions then.
paste your copy syntax here that your using
October 28, 2009 at 4:59 am
as mentioned earlier it will either be permissions or your UNC path is wrong. try typing your path into a start - run command and see if the...
October 28, 2009 at 4:51 am
David Benoit (10/27/2009)
GilaMonster (10/27/2009)
David Benoit (10/27/2009)
That appears to be a pretty high disk queue length to me. 🙂
<shrug> Two points
SQL is designed to drive the disk queue up. It's not...
October 27, 2009 at 11:39 am
im just up to the point in the audio which talks about the average queue legnth 🙂
October 27, 2009 at 11:35 am
whats your disk layout? The disk queue legnth may/may not be an issue depending on how many disks you have
October 27, 2009 at 11:09 am
mcvilbar (10/27/2009)
You can xp_cmdshell for that in order to copy to another server in SQL. 🙂
you can, however
a) its a security risk and most systems have it disabled
b)...
October 27, 2009 at 10:32 am
is there any code that sets identity_insert on and then specifies a key value?
Do you have any replication running on the table?
October 27, 2009 at 10:27 am
Eric1208 (10/27/2009)
San-847017 (10/26/2009)
Yeah...If it's 32 bit you will have to enable AWE option.In 64 bit it's not necessary.
I enabled AWE option but still couldn't increase server memory.
When you say you...
October 27, 2009 at 3:59 am
Viewing 15 posts - 166 through 180 (of 536 total)