Forum Replies Created

Viewing 5 posts - 121 through 125 (of 125 total)

  • RE: Running Stor Proc from DTS package

    I was tring jan van der Goes's way but I get "Connection is busy with results from another command".

    Ionel

  • RE: Has anyone ever seen this fatal error before?

    From BOL "row ID (RID) comprised of the file number, page number, and slot number of the row"

  • RE: Cache

    Hi,

    Have you tried to recreate the procedure WITH RECOMPILE?

    Ionel

  • RE: Finding and Deleting Duplicate Data

    I think you can use this approach too

    --table structure

    CREATE TABLE [a4] (

    [id] [int] IDENTITY (1, 1) NOT NULL ,

    [title] [varchar] (50) ,

    [name] [varchar] (50) NULL ,

    CONSTRAINT [PK_a4] PRIMARY KEY ...

  • RE: Seven Monitoring Scripts

    For the script that is looking for jobs still running I think an easyer script will be

    msdb.dbo.sp_get_composite_job_info @execution_status = 1

    since the rest of parameters has a default NULL.

    Ionel

Viewing 5 posts - 121 through 125 (of 125 total)