Forum Replies Created

Viewing 15 posts - 211 through 225 (of 447 total)

  • RE: Mr. & Mrs.Smith!

    Aha... This one's easy.

  • RE: Partitioning in SQL Server 2008

    Great article and easy to read. Done it in 2005 last year but had not seen a significant increase in performance.

  • RE: Displaying a Pop-up message in SSRS 2005

    Just tried but failed. Throws some invalid error - rsReportParameterProcessingError. Don't know what the heck is that.

    'm not a .Net developer.

  • RE: TOP

    select top 1 ch from #t with(index(nc_t))

    order by ch desc

    Answer : b

    select top 1 ch from #t with(index(nc_t))

    order by ch

    Answer : !

    select top 1 ch from #t with(index(nc_t)) ...

  • RE: License Pricing

    Company IT dept. took the stance that they will go for SQL Server 2008 only in Mid 2010 after Microsoft releases SP2 and then add 6 months to it.

  • RE: License Pricing

    We had licenses for both 32 bit and 64 bit. But, my manager wants to implement a policy of going for 64 bit only for all new SQL Server...

  • RE: open and close, or just open?

    I would leave it open. Don't know complications with .Net application but going by standards of SQL Server, Auto-Close is treated as a bad performance option on an OLTP...

  • RE: SELECT FUN

    John,

    With " order by 2 desc " are you not forcing the query to get result in the way you had desired?

    select NULL,'manoj'

    union select Null,'1'

    union select NULL,'manoj'

    order by 2 desc

  • RE: SQL server 2008 Build List

    SmartDBA (4/22/2009)


    Here is the link for an excellent article on myTechMantra.com which mentions all the SQL server 2008 and 2005 builds along with the list of respective KB.

    The link provided...

  • RE: Counts from two tables?

    Thanks Mark. Though not same but I am about to write a similar script for one report and just saw your query.

  • RE: SELECT FUN

    select NULL,'manoj'union select Null,'1'union select NULL,'manoj'

    order by 2

    or

    select NULL,'manoj'union select Null,'1'union select NULL,'manoj'

    order by 1

    gives you same result.

    NULL1

    NULLmanoj

    I tried on all sql server versions and result is same. May...

  • RE: @@CPU_BUSY

    Jason Shadonix (4/17/2009)


    ChacMoll (4/17/2009)


    I disagree with the answer, that the return value exceeds the limit of an integer, a variable of type integer is not able to save millions

    The answer...

  • RE: Reporting Services Database

    Pei Zhu (4/20/2009)


    Not sure what did you mean "what edition of database should you have".

    Databases do not have edition. sql server may have edition.

    You are right. Databases could have...

  • RE: Operating system Error 112

    Intentions might be good of this writer but advice is horrible. Backup log WITH TRUNCATE_ONLY.:w00t:

    Dude, are you serious enough to execute it on production ! ! !

  • RE: There Must Be 15 Ways To Lose Your Cursors... part 1, Introduction

    Interesting article. Would be waiting for second installment. Cursors are bad ( period ) but in some situations we had to use them. It becomes necessary.

    The...

Viewing 15 posts - 211 through 225 (of 447 total)