Forum Replies Created

Viewing 15 posts - 226 through 240 (of 1,086 total)

  • RE: Gradebook Calculation Methods

    It sounds like you are asking a broader question that it may seem. 

    First, if every teacher calculates their grades differently, you will have one heck of a set of...

  • RE: Don''''t blame SQL please....

    It is pertitent...  I say it is mandatory whether that is the case or not!  And SQL Server 2000 should put out a patch MAKING it Mandatory! 

  • RE: Using single/double quotes

    Haven't read that article, but I have CHAR(39) memorized for precisely this sitiuation! 

  • RE: Update query

    Can you give us some test data?  Also, can you show what output you get and what output you want?  It is hard to tell what your problem is from...

  • RE: Don''''t blame SQL please....

    You use AS for the same reason you should capitlize key words like SELECT, FROM, LIKE, LEN(), GETDATE(), WHERE, etc.!!!! 

    I am a major stickler on that!  A-Type!  I will...

  • RE: Replacing Cursor with UDF slower...

    Thanks!  I tried it and although over 50 iterations it should a slight improvement, it wasn't that much faster; which really surprised me! 

    I will keep messing with approaches.  (I...

  • RE: adding a unique identity to each row of the output?

    You could also try an easy addition to your select statement:

    SELECT top 10 (left(Thedate,11) + ' - ' + consultantname ) AS 'Consultant Name', Thedate AS 'Date', COUNT(*) AS...

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    Sergiy, you are correct!  I had always been under the impression that char fields padded their entries...  And I am using Simple SQL db at my home. 

    CREATE TABLE #Character(...

  • RE: Help me with this t-sql

    Glad I could help!   This is an odd requirment - would you care to be more explicit about why you need these unusual results?  As the number of Column1 entries...

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    Not when it is a CHAR field.  That is true of VARCHAR. 

  • RE: Help me with this t-sql

    The sledge hammer is back!   

    This will work, but it is somewhat involved; although the request is rather involved as well...

    DECLARE @t...

  • RE: Query puzzle

    Well that, and in my case, to get answers as well!   

     

     

  • RE: Count with a Union

    You 'da woman!  Sorry, I got caught up at work and could not come back to this..., glad you were able to figure it out. 

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    Can you make it allow NULLs?  That would require fewer functions to be implemented for checking...

     

     

  • RE: Count with a Union

    I cannot see what your question is.  What is returns and what you want look the same to me...

Viewing 15 posts - 226 through 240 (of 1,086 total)