Viewing 15 posts - 991 through 1,005 (of 1,654 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
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
December 12, 2007 at 3:40 am
December 11, 2007 at 9:50 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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
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...
[font="Verdana"]Markus Bohse[/font]
December 4, 2007 at 1:18 am
Viewing 15 posts - 991 through 1,005 (of 1,654 total)