Forum Replies Created

Viewing 15 posts - 21,556 through 21,570 (of 22,202 total)

  • RE: TSQL by Duration (Response Time)

    Bob Fazio (11/1/2007)[hrComplaints come from many sources. A stable system is a good goal too. Performance is also a goal. If you haven't noticed before a high...

  • RE: XQuery vs. OPENXML

    Please, a syntax check on the XQuery. It's my first time out of the gate with this and I'm not sure I'm avoiding stupidity successfully.

  • RE: Metadata Structure / Design Issues

    Neither full text or xml has me terribly excited. If it were my project, I'd be reexamining the assumptions and trying to find a method of defining the requirements more...

  • RE: Help- (T-SQL)

    Sounds like you just need an "ORDER BY"

  • RE: Metadata Structure / Design Issues

    What about XML for the meta data? It really does sound like it's only semi-structured data.

  • RE: Details of In-lined table-function

    I'm sorry, I don't understand the question. Can you supply a few more details?

    When you say in-lined table function, do you mean a user defined function that returns a table...

  • RE: Dynamic Variable declaration to avoid CURSORS

    Well, again, there's not enough detail to start to give you very specific answers. It sounds like you're doing RBAR (row by agonizing row) processing. I'd strongly suggest you examine...

  • RE: Insert data from XML file

    Andras Belokosztolszki (10/31/2007)


    Grant Fritchey (10/30/2007)


    Nah, neither method is "wrong". If you're opening the XML from a file, definiately do what Andras suggested. If you're receiving the XML from an application...

  • RE: if...else statement...

    Marcus Farrugia (10/30/2007)


    What is the difference between if and iif?

    Thank you in advance for your help.

    IIF is an MDX expression used to build cubes. It corresponds to the immediate if...

  • RE: Update Statement With Incrementing Number

    This works:

    create table #t

    (Col1 nvarchar(50))

    GO

    create table #s

    (Col1 nvarchar(24)

    ,Col2 nvarchar(24)

    )

    GO

    insert into #t (col1) values ('a')

    insert into #t (col1) values ('b')

    insert into #t (col1) values ('c')

    insert into #t (col1) values ('d')

    insert into...

  • RE: how do I kill a user going through sql server management studio

    No. Analysis Services is for cubes. Totally different application. You just need to do the stuff in the post above to identify the appropriate SPID and then use the command:

    KILL...

  • RE: Estimated Number od Rows vastly incorrect for null date value

    Adding the other column will only help if it turns the index into a covering index. If you're doing SELECT *... I probably won't do anything.

  • RE: Dynamic Variable declaration to avoid CURSORS

    Shy details, it sounds like you're talking about temporary tables.

  • RE: Insert data from XML file

    Nah, neither method is "wrong". If you're opening the XML from a file, definiately do what Andras suggested. If you're receiving the XML from an application through a parameter, I'd...

  • RE: October Energy Update

    I think they want the loan guarantees because, quite frankly, the next administration (regardless of individual or party, not picking a fight with anyone), can reverse the directions & decisions...

Viewing 15 posts - 21,556 through 21,570 (of 22,202 total)