Forum Replies Created

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

  • RE: SSIS

    Error is: Unable to retrieve file using ftp connection manager

  • RE: SSIS

    It works fine through SSIS, no matter the number of files or the size of files.

    The permission on all the files are same.

    If i make another two copies of the...

  • RE: Sql server Agent

    Thanks,

    Brian this is what i wanted.

    Thanks a lot!!!!!!!!!!!!!!!!!!!!!!!!!!

  • RE: Sql server Agent

    Mark Thank for you reply

    But here once i disable the primary job i want to make sure it has completed execution and then have the sql server agent start the...

  • RE: How can I capture update query session details?

    Did you try question profiler with filtering?

    and another option i think you can try would be sysprocess table.

  • RE: DB in Inrecovery Mode

    sorry, its recovery instead of no recovery

    -------------------------------------

    you can use either of the below two options to get the database into recovery state

    RESTORE DATABASE database_name

    WITH RECOVERY

    OR

    RESTORE LOG database_name

    WITH RECOVERY

  • RE: How can I capture update query session details?

    you can use the following query to get the list of functions and sp that are executed against that

    table

    SELECT so.name AS FuncProcName, t.TABLE_NAME AS TableName, sc.text AS Definition

    ...

  • RE: DB in Inrecovery Mode

    you can use either of the below two options to get the database into recovery state

    RESTORE DATABASE database_name

    WITH NORECOVERY

    OR

    RESTORE LOG database_name

    WITH...

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