Forum Replies Created

Viewing 15 posts - 2,101 through 2,115 (of 7,429 total)

  • RE: Query cached plan

    I know of no other ways to do this as you are asking.

  • RE: CAN SOMEONE EXPLAIN TLOG MECHANICS (GROWTH, SHRINKAGE) ???

    Read "Transaction Log Backups" in SQL BOL for TL.

  • RE: CASE in FROM Clause

    Sorry just occurred to me that if the structure of the tables are roughly the same you could potentially use a UDF like in the following example to pull it...

  • RE: CASE in FROM Clause

    Sorry you cannot do.

  • RE: HELP! ERROR 17883 Non-Yielding scheduler, SP3 doesnt Work!

    Blackbox Trace will be your only hope to catch to the moment it occcurrs but still no guarantee. See "Reporting Errors to Your Primary Support Provider" in BOL (index Blackbox.trc).

  • RE: SELECT Query on Stored Procedure Output

    Afraid not at least not that way. You could create a linked server to itself and try

     

    SELECT INTO #tblWho FROM OPENQUERY(MYSELF,'EXEC sp_who')

     

    But I don't like that method because of how...

  • RE: SELECT Query on Stored Procedure Output

    Up to you but here is a simple example to demonstrate how it works.

    SET NOCOUNT ON

    CREATE TABLE #tblWho (

     spid int primary key,

     ecid int,

     status varchar(30),

     loginame varchar(128),

     hostname varchar(128),

     blk int,

     dbname varchar(128),

     cmd varchar(16)

    )

    INSERT...

  • RE: Differnetial Backups applied to different server getting errors

    Oops, sorry about that I was thinking TL backups when I was typing.

  • RE: Trigger update is being overwritten

    Can you post your TABLE DDL and TRIGGER for us to get an idea of what you are doing fully please?

  • RE: Updating a column

    Nope makes a lot more sense now. The only question left is how will you know ethicitytype in the families table has not been set? Will it be NULL or...

  • RE: Row level trigger

    What is the outcome of this TRIGGER, looks like either you are getting the sequence id or setting it my Oracle Kung FU ain't the best and I don't have...

  • RE: unique column

    WHen you add in CADD and CSCORE you will get duplicate names if you have multiple different entries in either of those fields. If you want all the CADD and...

  • RE: Oracle Migration

    Don't have time right now to validate it but if you know the limit of how many inputs you will need add 10 and create a UDF (user defined function) something...

  • RE: Column standardization

    As far as "state" is concerned, this has potential for international use, so I was advised to go with varchar 5 there (and also replace "state" with "pstate" or the like...

  • RE: Index not used on Select *

    They are stored in the order they were entered with some exceptions but they are considered in heap as no deciding factor determines sort. The index actualy sroes the page...

Viewing 15 posts - 2,101 through 2,115 (of 7,429 total)