Forum Replies Created

Viewing 15 posts - 91 through 105 (of 654 total)

  • RE: Semi-colon use

    mmm.. which instances


    Everything you can imagine is real.

  • RE: Procedure expects parameter Error

    dlgross

    i had a case similar to yours once. and i used dynamic sql


    Everything you can imagine is real.

  • RE: Referential Integrity Circles...

    using triggers


    Everything you can imagine is real.

  • RE: Procedure expects parameter Error

    chane your datatype for the @sql to nvarchar

    sp_executesql works with unicode characters

    you really must stay away from this dynamic sql if possible


    Everything you can imagine is real.

  • RE: Find out all SQL Server 2005 installations on our network

    osql -L

    you can pipe the output to a text file

    osql -L > c:\sqlservers.txt

    you can also use SMO objects with .net and do some fancy stuff there


    Everything you can imagine is real.

  • RE: Syntax error in SPROC

    you also need to enclose your values in another pair of quotes

    ''Building''


    Everything you can imagine is real.

  • RE: Syntax error in SPROC

    you are using dynamic sql hence you need to enclose your zero with another set of quotes since you want to concatenate and not add it to the left most...


    Everything you can imagine is real.

  • RE: Semi-colon use

    the semi colon is a way to separate different sql statements, but it does not make a difference in sql server. maybe they will enforce it in years to come.


    Everything you can imagine is real.

  • RE: Quartiles

    DECLARE

    @Q1 INT, @Q2 INT

    --get the lower quartile

    SELECT @Q1 = duration


    Everything you can imagine is real.

  • RE: Quartiles

    no , its not because you have to account for odd or even count


    Everything you can imagine is real.

  • RE: Quartiles

    it means working from home.


    Everything you can imagine is real.

  • RE: Quartiles

    Thomas,

    there is something called taking the problem home.

    good night


    Everything you can imagine is real.

  • RE: What is it?

    i had this problem once. but i can't remember how i solved it. this has to do with the installer program and not sql server itself.

    try this http://support.microsoft.com/kb/312995


    Everything you can imagine is real.

  • RE: @@Rowcount in view???

    maybe Stevo can use his M$ connections to get an explanation eh!


    Everything you can imagine is real.

  • RE: Quartiles

    proof of concept:

    try this for the median and see if its giving you the correct median, replace with your own code where...


    Everything you can imagine is real.

Viewing 15 posts - 91 through 105 (of 654 total)