Forum Replies Created

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

  • RE: Related to Certification

    quote:


    How can you ensure accuracy?


    Good question. I am looking to get hired, and my...

  • RE: Syntax error with BEGIN

    I've applied the following to the SELECT list and it looks like I've got something to work with now:

    *********************************************

    IF

    (SELECT COUNT( SystemUserName)AS ACount FROM Teacher_Data_Main

    WHERE

    SystemUserName = SYSTEM_USER or

    (SystemUserName <> 'valverde\pGist'

    and...

  • RE: Syntax error with BEGIN

    quote:


    If I used AND instead of OR, wouldn't I be asking the WHERE condition to evalueate a single record for each domain...

  • RE: Syntax error with BEGIN

    I want the application to work so that when a user logs on with their domain account ('valverde\(user name)'), the application will look for a match of the SYSTEM_USER value...

  • RE: SQLServerAgent will not start

    The registered server and the machine name are the same. CSDunn

    quote:


    Is the name of the server the same as the SQL instance...

  • RE: Problem with ISNUMERIC

    Thanks, this will do what I need! CSDunn

    quote:


    SELECT DISTINCT

    WorkerI

    FROM tblWOWorkOrder

    WHERE ISNUMERIC(WorkerI) = 0

    ORDER BY WorkerI DESC


  • RE: IDENTITY property problem

    Thanks for the link to the article. One of the problems in this case is that the column, ‘WorkOrderID’ is not already and IDENTITY column, so using DBCC CHECKIDENT will...

  • RE: Need Help with Cross-Tab

    Thanks for your help!

    CSDunn

  • RE: Updating specific strings to UPPER

    The column is not case sensitive. Maybe I should change the collation of the column?

    CSDunn

    quote:


    Try making the Where clause:-

    WHERE UPPER(STREETNAME) <> STREETNAME

  • RE: Trigger Problem

    Thanks, that's what I was missing.

    CSDunn

    quote:


    Remember to check that the field you are updating has changed. Perhaps on the EXISTS...

  • RE: Need to isolate string portion

    Thanks, this is great!

    quote:


    Select Left(Address,Len(Address) - CharIndex(' ',Reverse(Address)))


  • RE: Need to isolate string portion

    Thanks, this is very helpful!

    CSDunn

  • RE: Need help with calculation

    Thanks to all, your input has been very helpful!

    CSDunn

  • RE: Need help with calculation

    Hello,

    The following is what I came up with, but the final average is still a little off:

    *****************************************************************

    Select

    Permnum,

    ROUND(

    CAST

    (

    (

    ISNULL((CASE When ST1Q1 <> 'N' Then CAST(ST1Q1 as tinyint) Else Null End),0) +

    ISNULL((CASE When...

  • RE: Need to delete first character of a string

    Thanks for your help!

    CSDunn

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