Viewing 15 posts - 991 through 1,005 (of 1,655 total)
Add the full path in your @txt parameter like this:
set @txt = 'C:\Program Files\Winzip\winzip.exe -a V:\Data_1\'+@db_name +'.zip V:\Data_1\'+@db_name+'.mdf'
Exec master..xp_cmdshell @txt
December 14, 2007 at 1:13 am
The only way you can achieve what you want is using logshipping, which would give you read access to the database. With any other solution using backups you always...
December 14, 2007 at 1:09 am
All these proceures and the dtpropertties table are used to create diagrams in SQL 2000. You can safely ignore them when transferring you're data. If your new server is SQL...
December 14, 2007 at 12:56 am
Alan,
the reason for the "insufficient memory" messages is very likely that the largest available contingous memory block is smaller than the maxtransfer size for the backup. The default blocksize...
December 12, 2007 at 6:47 am
WHen you double-click a table in EM you call a stored procedure which uses the rowcnt column in the sysindexes table, while your query in QA does an actual count...
December 12, 2007 at 3:40 am
This procedure is used for replication and I think it will only added to your system when you run the configure publication/distribution wizard.
If you have done this already and...
December 11, 2007 at 9:48 am
Without knowing what exactly you try to achieve and no ddl I can only guess.
Does it matter which record is returned or do you just want any record?
Can't you...
December 11, 2007 at 9:42 am
Adding to the previous replies if you really backing up a very large database, you might want to backup to more than one file. Depending on your disk subsystem this...
December 11, 2007 at 9:31 am
mallekar (12/4/2007)
IThe question did not specifically ask about network protocols but some of the posts implid that.
Sorry, but this is the question:
How many network protocols are available on SQL Server...
December 4, 2007 at 8:43 am
Defining an alert is not depending on SQLMail.
What I think you're actually looking for is another way to send out notifcations. By default SQL Server also supports netsend and...
December 4, 2007 at 5:07 am
b]
the indexes you r talking about, is it automatically built by sql server?
NO, the indexes on a temporary table you have to create yourself. Statistics on the other hand are...
December 4, 2007 at 4:56 am
Without knowing your code or even how much data your touching, it's difficult to give a full answer but what comes to my mind is the fact that temp tables...
December 4, 2007 at 3:33 am
Oops,
Ramesh my mistake I wanted to say exactly this, that shared memory can only be used to connect to a local instance. So it doesn't access the network. That's...
December 4, 2007 at 3:04 am
What exactly are you missing. You say"especially the Service Manager suite". If you mean the small utility which in SQL 2000 sits in the system tray, that no longer exist...
December 4, 2007 at 1:18 am
Viewing 15 posts - 991 through 1,005 (of 1,655 total)