Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Count all records the tables

    Hi,this is script for same purpose :

    set nocount on

    declare @nam nvarchar(255)

    declare @qur nvarchar(max)

    declare shayanCurs cursor for

    select top 50 name from sys.objects where type = 'U'

    open shayanCurs

    fetch from...

  • RE: Restore is not happening

    Hi

    there is any number of reasons, like the agent can not access to log backup to restore or you are using the secondary database and database is in Use .

    for...

Viewing 2 posts - 1 through 2 (of 2 total)