Viewing 10 posts - 1 through 10 (of 10 total)
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...
August 12, 2011 at 2:26 pm
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 =...
August 12, 2011 at 2:12 pm
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...
August 12, 2011 at 1:32 pm
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 =...
August 12, 2011 at 1:19 pm
I will see if that works. When you put..
from Investment_Advisor ia
What does the ia stand for/mean ?
August 12, 2011 at 1:02 pm
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
August 12, 2011 at 12:48 pm
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...
August 12, 2011 at 12:46 pm
My purpose here was I wanted to compare rs("user_name") to rs("theResult")
August 12, 2011 at 11:44 am
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 =...
August 12, 2011 at 11:42 am
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>")
August 10, 2011 at 2:11 pm
Viewing 10 posts - 1 through 10 (of 10 total)