Forum Replies Created

Viewing 3 posts - 76 through 78 (of 78 total)

  • RE: BACKUP

    Hi Sachin,

    Use Dbcc Trace on(1807) in the T-sql and specify the shared path for the backup.Just like this

    use master

    go

    DBCC TRACEON(1807)

    GO

    BACKUP DATABASE Northwind

    TO Disk = '\\Machine_name\C$\Northwnd.bak

    Hope this will Work for you

    B...

  • RE: Backing Up a Database

    Hi David,

    You can take the backup of server A on Server B and restore it to the B.Or you can take the backup on Server A and restore it on...

  • RE: Stored Procedure to load excel data into sql table

    Hi,

    You can call a DTS from VB application,I think the same way you can do with ASP also.

Viewing 3 posts - 76 through 78 (of 78 total)