Forum Replies Created

Viewing 15 posts - 451 through 465 (of 717 total)

  • RE: Grouping

    Did you get this problem resolved?

    If not, can you provide us with the table structures so we can try to help?

  • RE: Please help with sql query

    Lucky9 (9/29/2010)


    Thanks all for the quick response....

    Have you had a chance to test them?

    If so, do they return the correct results? Was one of them faster than the others?...

  • RE: Create intelligent datatype using .NET

    hrc (9/29/2010)


    You right. Learned about filestreams as late as yesterday, but alas, I cannot use it as the customers heavily rely on SQL2005 and streams is a 2008 thing.

    You did...

  • RE: Advantages On Upgrading to SQL 2008 - Specific to my environment

    iqtedar (9/29/2010)


    i) Performance- how exactly would upgrading to sql 2008 help in improving the performance.

    I don't have a list of improvements, but I have seen a number myself. 2008 R2...

  • RE: Help with Update Query

    Thanks for letting us know the queries we provided helped.

  • RE: Creating indexes on computed columns

    I think you need to check the answer key for this question. It lists "Column references can pull data from multiple rows." as one of the options you have to...

  • RE: Help with Update Query

    Give this a try:

    WITH CTE AS (SELECT

    S_NO,

    ...

  • RE: Please help with sql query

    Here is an alternate version that doesn't use as many CTEs, opting for correlated sub-queries instead, and from the execution plan should run faster while still returning the same results:

    I...

  • RE: Please help with sql query

    Well since you included sample/test data that almost worked, and had a almost complete explanation of what you wanted I think I was able to make a query to do...

  • RE: Please help with sql query

    Lucky9 (9/28/2010)


    Insert into Patient Values(3,'jjj','678912345469')

    This insert fails because the data is longer than you have allowed in your table...

    Could someone please help me with the query , I have to...

  • RE: Fun with IDENTITY - Part I

    I agree, nice question, but it would have been even better with a fourth option: 1-Boston;2-New Delhi

    Without that option it was really a test of transactions, not of IDENTITY....

  • RE: SELECT from one table where count of rows = 0 in another table

    Your welcome, and thanks for letting me know it worked for you.

  • RE: LIKE command

    Your welcome, thanks for letting us know that worked for you.

  • RE: Create intelligent datatype using .NET

    It sounds to me like the best fit for your problem would be to use FILESTREAM storage for your VARBINARY(MAX) field. You might want to look that up in BOL.

  • RE: Scan for percentage differenced

    Digs (9/28/2010)


    Are you sure you have the order round the correct way, that is the 01/04/2000 record is divided by the 01/03/2000, that is new date divided by the older...

Viewing 15 posts - 451 through 465 (of 717 total)