Forum Replies Created

Viewing 15 posts - 1 through 15 (of 36 total)

  • RE: Validating Stored Procedure results

    All of the procedures (over 60 of them) need to be in the same format.  I created a process that executes each of these and moves the data into a...

  • RE: Validating Stored Procedure results

    That works, thanks.  Now I am running into the problem with the SELECT INTO and no column names being specified.  I want the process of making these procedures real easy...

  • RE: Validating Stored Procedure results

    I just tried it with a real table and that worked.  Thanks!

  • RE: Validating Stored Procedure results

    I tried this and it keeps returning 0.  The syscolumns isn't updating with the temp table.

  • RE: SQL SourceSafe Advice

    Does anyone use SQL Source Control from Skilled Software?  I think I have decided on purchasing this, I am just a little skeptical if I don't have any real people...

  • RE: Deleting with a Foreign Key

    Thanks everyone for their input, I am going to try a bunch of options.  Since this is an overnight process that crunches and rebuilds all the data, it's going to...

  • RE: Deleting with a Foreign Key

    Thanks Wayne!

    We don't really have a development server so it's all on the fly and the process runs overnight and the business doesn't...

  • RE: Continue on Error

    Thanks everyone for your suggestions, I think I am going to go ahead and break out the procedure and put the smaller procs into a job (like Jordan suggested). ...

  • RE: Continue on Error

    That's no good! Thanks anyways. I don't have a client that does this, it was just going to be a job.

  • RE: Monitoring tools

    Antares, is this what you use? This is what our dba uses as well and every once in a while the CPU peaks between 85 and 95% and so...

  • RE: SELECT with incrementing number

    Check out the IDENTITY function.

    IDENTITY ( data_type [ , seed , increment ] )

    You have to do a SELECT INTO statement.

    SELECT Name,

    IDENTITY(INTEGER, 1, 1)

    INTO #TempTableName

    FROM tablename

    SELECT...

  • RE: record formating

    Have you tried:

    select max(col1),

    max(col2),

    max(col3),

    max(col4),

    max(col5),

    max(col6)

    from tablename

    ?

  • RE: Create Database Failed

    Thanks everyone for your help. The db was created this morning when the SQL Server switched to the secondary node. No one knows why it wouldn't go, I...

  • RE: Create Database Failed

    I just checked EM and it doesn't seem like there is anyone connected to the Model db. sp_who returns too much to scan through to see if anyone is...

  • RE: NULLs' effect on Indexes

    I've always tried to steer clear of indexing varchar columns, is this a good practice or am I stuck in the 16bit processor days?

Viewing 15 posts - 1 through 15 (of 36 total)