Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 1,655 total)

  • RE: Zip around 1000 Db's having each 10 Gb size

    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

  • RE: How do I convert Recovery mode to NORecovery mode

    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...

  • RE: System Table and System SP's

    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...

  • RE: SQL Server 2000 Memory issue

    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...

  • RE: Different Value for EM and QA??

    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...

  • RE: Blocking Processes?

    Check out this article:

    http://support.microsoft.com/kb/319892

  • RE: NEEDED: sp_MShistory_cleanup - 2000

    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...

  • RE: UDF and RowCount

    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...

  • RE: Back up Query help

    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...

  • RE: SQL Server Protocols

    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...

  • RE: Disk space alert

    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...

  • RE: temp tables VS variable tables ????

    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...

  • RE: temp tables VS variable tables ????

    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...

  • RE: SQL Server Protocols

    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...

  • RE: SQL 2005 Installed But Service Manager Did NOT

    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...

Viewing 15 posts - 991 through 1,005 (of 1,655 total)