Forum Replies Created

Viewing 15 posts - 2,851 through 2,865 (of 5,103 total)

  • RE: Error Message when creating DB

    what the error means is that when using cascades you are not allowed to have more than one possible path for the cascade action to occur!!

    ex

    T1 <------------------------------ T2

     ^                                           |

     |-----------------T3 <-------------|

     

    In...


    * Noel

  • RE: Error Message when creating DB

    can you post the DDL of EmployeeTests and Categories ?


    * Noel

  • RE: TOP Clause functionality within Groups

    not really, let me check 


    * Noel

  • RE: Check T-SQL for string length problems

    The purpose was to check the INSERT statements. With varchar you get NO errors it will simply truncate the values. If those columns were declared as CHAR it will bomb...


    * Noel

  • RE: TOP Clause functionality within Groups

    Remi, the issue is not your query he needs to aggregate the data before your query is implemented. No matter which method you use the aggregation has to happen first...


    * Noel

  • RE: Check T-SQL for string length problems

    if you have unit testing in place a quick way to find those is to convert all varchar to char and perform the tests you will find the errors and then...


    * Noel

  • RE: Removing embedded duplicate rows

    sure I would love to see your app scale! ... it will be good for you

    Then I will see you comming for help and...


    * Noel

  • RE: debug too in SQL Analyzer

    Make sure the remote server is not running under "Local system account"!

     


    * Noel

  • RE: Removing embedded duplicate rows

    don't get me started with the unnecessary use of cursors and where is

    @myVar='10,80,90' used in there ?

     


    * Noel

  • RE: TOP Clause functionality within Groups

    I had thought of doing it this way, but was trying for something in 1 query instead of multiple.

    Like I said Create a view with your original code then

    the "second" query...


    * Noel

  • RE: Converting text to datetime

    Just add a little string manipulation

    SELECT convert(datetime, Left(MyDateString,8) + ' ' + Right(MyDateString, 12) ) as Converted

    from MyTable


    * Noel

  • RE: Limited length of VarChar in stored procedure

    you should always try to separate data from presentation !! use sql for what is good at : Retrieve data (not mixed with Metadata) and ASP for dynamic Page building


    * Noel

  • RE: Multiple inserts

    If you want a long one I have this themes for you:

    - DBA vs Developers

    - Oracle vs SQL Server

    - Indentity vs Natural Keys

    ...

     

    but I would have never imagine that "multiple...


    * Noel

  • RE: Multiple inserts

    This is probably the longest thread ever !!!


    * Noel

  • RE: Multiple inserts

    Is this thread STILL alive???

    Can you continue in a new one .... sheeshh 


    * Noel

Viewing 15 posts - 2,851 through 2,865 (of 5,103 total)