Forum Replies Created

Viewing 15 posts - 301 through 315 (of 359 total)

  • RE: Identity Out of Step

    are there any other inserts in to other tables with a similar identity? try using scope_identity over @@identity

    ***The first step is always the hardest *******

  • RE: XML Parse help

    thank you all very much

    ***The first step is always the hardest *******

  • RE: XQuery vs. OPENXML

    Thanks will try that

    ***The first step is always the hardest *******

  • RE: XQuery vs. OPENXML

    HI, im currently working on importing an XML document using

    exec sp_xml_preparedocument @idoc output, @xml_in

    what i want to do is to be able to pass the @xml_in a file path...

    ***The first step is always the hardest *******

  • RE: List Index's syntax

    Thanks, thought it might be that easy lol *** goes and cowers in a corner ***** :w00t:

    ***The first step is always the hardest *******

  • RE: Help with query

    I read it that you are saying

    your current script returns

    2

    10

    19

    However, what you want like for example is 1 row to be returned that would sum the above results so the...

    ***The first step is always the hardest *******

  • RE: want to write a query that finds not matching rows

    can you provide some sample data, have a look at some of the other threads see how when asking for help they add in scripts to create replica data as...

    ***The first step is always the hardest *******

  • RE: COMPATIBILITY_LEVEL question: Upgraded to 2008 R2... Sort of... or "Is there a tool that will tell me what this upgrade broke?"

    Personally I would leave the compatibility level at 80 for now and like other people have mentioned in this thread, create a test environment and then thou rally test your...

    ***The first step is always the hardest *******

  • RE: T SQL to track changes

    how about using triggers and an audit table for insert update and delete. So every time a record is updated inserted or deleted yoit will be added to a log...

    ***The first step is always the hardest *******

  • RE: BCP copy out failed

    Have you tried running BCP from a batchfile

    ???

    SET database=yourdbname

    SET Sever=yourSQLserverinstance

    bcp %DATABASE%.dbo.yourtable out "yourtable.bcp" -n -T -S%

    ***The first step is always the hardest *******

  • RE: CreateTempTable function?

    Depending on what you are doing i like to user variable temp tables, there is no need to drop them at the end because once the script as completed execution...

    ***The first step is always the hardest *******

  • RE: Duplicate Plans in the cache

    its ok found the issue databse compatability level was the wrong type for this query thank you 🙂 retrieve server from the abis 🙂

    updated my SQL to only report on...

    ***The first step is always the hardest *******

  • RE: Duplicate Plans in the cache

    Thanks ok so i found the below script however, this only works when i run it against the master DB can anyone help????

    SELECT TOP 50 creation_time, last_execution_time, total_clr_time,

    ...

    ***The first step is always the hardest *******

  • RE: Duplicate Plans in the cache

    HI thanks for all this info, not sure about 1 plan executing several hundred times how do i find that information? just looking on the activity monitor the column header...

    ***The first step is always the hardest *******

  • RE: Create table columns from table rows

    im not sure i entirly get what your asking for but, as i read it sounds like you want to pivot the data, look up pivot tables

    ***The first step is always the hardest *******

Viewing 15 posts - 301 through 315 (of 359 total)