Viewing 11 posts - 1 through 12 (of 12 total)
They can't alter the stored procedure but they can request changes to the report.
October 20, 2005 at 7:02 am
That is very true but in this case I had to use * to collect all the fields from the database and insert them into crystal report. The fields used are...
October 20, 2005 at 6:03 am
The query I asked about was fairly simple and i didnt think details of the table would be necessary because I needed all the information from the table and looking at...
October 20, 2005 at 3:19 am
Thank you Carl!
select *
, convert(varchar,convert(datetime,Date_Lst_Iss),103) as UKdate
from dbo.Part_Mast
where Part_Num LIKE (RTRIM('258095GB') + '%')
order by Part_Num
This query actually provides me with the correct results i was looking for. Thank...
October 20, 2005 at 3:13 am
select * into #temp from
(select convert(varchar,convert(datetime,Date_Lst_Iss),103), Part_Num from dbo.Part_Mast
where Part_Num LIKE (RTRIM('258095GB') + '%'))
Server: Msg 170, Level 15, State 1, Line 3
Line 3: Incorrect syntax near ')'.
October 19, 2005 at 8:46 am
even when I run the first query first i get a bracket error where as they are no extra brackets also im running both the queries in a stored proceudre...
October 19, 2005 at 7:49 am
select * into #temp from
(select convert(varchar,convert(datetime,Date_Lst_Iss),103), Part_Num from dbo.Part_Mast
where Part_Num LIKE (RTRIM('258095GB') + '%'))
select * from dbo.Part_Mast
where Part_Num in (select Part_Num from...
October 19, 2005 at 7:00 am
Hi,
But I need that query, thats the query im trying to add to the orginal sql query. I'm trying to make it work with that query.
any suggestions
Thanx
October 19, 2005 at 6:19 am
I dont quite understand this error when i run the above query i get the following error.
Server: Msg 457, Level 16, State 1, Line 13
Implicit conversion of varchar value to...
October 12, 2005 at 7:02 am
Viewing 11 posts - 1 through 12 (of 12 total)