Forum Replies Created

Viewing 15 posts - 91 through 105 (of 115 total)

  • RE: Restore database

    Hi,

    You can iclude it in the script to kill the SPIDs connected to the database and keep database in sigle user mode to avoid any new connections and then perform...

    [font="Verdana"]Renuka__[/font]

  • RE: SQL Agent Log File - what job failed?

    Hi,

    The issue need not be related to only a job failure. As the SQL Server Agent is responsible for other tasks as well (schedules, alerts etc.,). However, the problem could...

    [font="Verdana"]Renuka__[/font]

  • RE: how to use database in stored procedure

    Hi,

    As far as I know, the Use can't be given directly inside the procedure as a statement. But, you can try this.

    DECLARE @alert_str varchar(25)

    SET @alert_str = 'use '...

    [font="Verdana"]Renuka__[/font]

  • RE: Using much CPU and memore

    Is this a constant problem or does this happen only during certain time or is it kind of intermttent issue faced?

    Certain basic things you can check are:

    If there are any...

    [font="Verdana"]Renuka__[/font]

  • RE: Could not allocate new page for database 'TEMPDB

    May be you can check these two options first:

    1. The TEMPDB might have been configured with some Maximum Size and your transaction needs more than the configured space.

    2. Though Unrestricted...

    [font="Verdana"]Renuka__[/font]

  • RE: Maintenance Plan with mutiple DB's

    Not through the job history, but from the maintanace plan history (Right click on the maintanance plan)...we can get the details for each database which is a part of maintenance...

    [font="Verdana"]Renuka__[/font]

  • RE: how do i get the row count

    I guess you can use @@rowcount variable to get the count. It holds the count of rows affected by the last statement.

    Renuka__

    [font="Verdana"]Renuka__[/font]

  • RE: backup fails in sql server 2000

    The error message contains either error code or some kind of description based on which it can be analysed why did the job fail. The reasons can be many...... You...

    [font="Verdana"]Renuka__[/font]

  • RE: If a stored proc within a dts fails...

    The task of the DTS shows as failed. If you have set up any file to capture the error details (Steps tab-->Advanced options), you can see more info on the...

    [font="Verdana"]Renuka__[/font]

  • RE: Rebuild master database

    Yes. The MSDB and Model DB needs to be restored from the back ups.

    Renuka__

    [font="Verdana"]Renuka__[/font]

  • RE: Query Execution Time (Trouble Shooting)

    First you may do the basic checks like...if there are any blocks being created during the procedure execution OR if there is any job running at the same time....

    Renuka__

    [font="Verdana"]Renuka__[/font]

  • RE: DTS Step Failure Help

    Hi,

    You can use "On Completion", which goes to the next task irrespective of the status (success/failure ) of the preveious task.

    Renuka__

    [font="Verdana"]Renuka__[/font]

  • RE: SQL SERVER 2000 – REPLICATION - sp_repldone/sp_replcounters’

    Hi,

    There might be another (rogue) log reader process running which needs to be terminated. May be you can check for that and kill it and see if it helps.

    Renuka__

    [font="Verdana"]Renuka__[/font]

  • RE: planning DTS

    Hi,

    To make it even easier, just right click on the DTS package ans select "schedule package" and schedule it. A job will be created with the same name as the...

    [font="Verdana"]Renuka__[/font]

  • RE: DTS Package, Control name of tab in .xls file

    Hi,

    If I have understood your requirement correctly, this should work:

    Under the destination tab of data transformation task, the connection shows " , below that it says "Table Name", there I...

    [font="Verdana"]Renuka__[/font]

Viewing 15 posts - 91 through 105 (of 115 total)