Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: ISNULL on Empty Set

    I know. I am brand new employee at this company. Its only my 2nd week. I havent been given SQL Server 2005 access yet. So for the past week I...

  • RE: ISNULL on Empty Set

    sql = "DECLARE @result1 VARCHAR(50)" & _

    "select isnull(User_id, 'Not Available') as UserName, ISNULL(P2_Date_Acknowledged, 'N/A') as Result1 " & _

    "from Investment_Advisor ia " & _

    "left join Investment_Advisor_Part2 iap on iap.P2_Year_ID =...

  • RE: ISNULL on Empty Set

    i really do appreciate all your feed back just to let you know you have been very helpfull......but as i was just looking at that query. i keep forgetting that...

  • RE: ISNULL on Empty Set

    sqlz = " select isnull(User_id, 'Not Available') as UserName, ISNULL(P2_Date_Acknowledged, 'N/A') as Result1 "

    sqlz = sqlz & "from Investment_Advisor ia"

    sqlz = sqlz & "left join Investment_Advisor_Part2 iap on iap.P2_Year_ID =...

  • RE: ISNULL on Empty Set

    I will see if that works. When you put..

    from Investment_Advisor ia

    What does the ia stand for/mean ?

  • RE: ISNULL on Empty Set

    i realize

    Response.Write("<td class=fielddHeader valign=top nowrap><b> "&rs("user_name")&"</b></td>")

    should be

    Response.Write("<td class=fielddHeader valign=top nowrap><b> "&rs("theResult1")&"</b></td>")

    ....even with this change still doesn't work

  • RE: ISNULL on Empty Set

    ok. here is everything i have. keep in mind again I am tryin to export these results into an excel file. The first query runs fine all the user names...

  • RE: ISNULL on Empty Set

    My purpose here was I wanted to compare rs("user_name") to rs("theResult")

  • RE: ISNULL on Empty Set

    Ok guys I have another question for you. I am using this query:

    sql = " select b.User_Name "

    sql = sql & " from Investment_Advisor b "

    sql =...

  • RE: ISNULL on Empty Set

    How would you display the value of that variable @result, for example in ASP? PLEASE HELP

    would it be.....

    Response.Write("<td class=fieldFormat valign=top nowrap> "&rs("@result")&"</td>")

Viewing 10 posts - 1 through 10 (of 10 total)