Viewing 15 posts - 91 through 105 (of 217 total)
ahhh...of course I get another error. After changing the varchar(8000) to a text type, I now get this error:
select RGnameLast+', '+RGnameFirst AS Adjuster, RGnameLast, COcity AS ClientOffice, IOofficeName, WRworkOfficeId,...
August 8, 2006 at 6:36 am
Thanks guys...it's just a bunch of text from an online diary. It does not contain any keys or any unique data like that. Just a bunch of text...
August 8, 2006 at 6:27 am
Oh ok, so just change it to CONVERT(TEXT, WRnotes), right?
August 4, 2006 at 8:01 am
Good point...but removing it still gives me the error.
August 3, 2006 at 11:04 am
With the new SP, I am getting a
Line 6, Incorrect syntax hear ','.
But I don't see any misplaced commas....
August 1, 2006 at 7:00 am
No, it's not too hard to copy it, but I just wanted to work on one thing at a time. But I will give it a shot right now...
August 1, 2006 at 6:55 am
Forgot to include a script.
Hey guys, I forgot to say that I am getting the above error in an update section of the script page. The update statement looks...
August 1, 2006 at 6:08 am
Ok guys, I tried the CAST as text method and it is still giving me:
String or binary data would be truncated.
I haven't had a chance to trim down the SP...
August 1, 2006 at 6:05 am
Yes, I am writing data to a temp table with this query using an ASP script:
if exists (select * from INET.dbo.sysobjects where id = object_id(N'[INET].[dbo].[jones_temp]')
and OBJECTPROPERTY(id, N'IsUserTable') = 1)...
July 31, 2006 at 12:17 pm
I'm using a temp table and I need the cursor. I guess I could try it without as soon as I fix this other bug.
Anyway, "Results" is not large...
July 31, 2006 at 11:36 am
I tried doing SUBSTRING(Results, 0, 7999) AS Results1, SUBSTRING(Results, 8000, 15999) AS Results2
but that did not work...
July 31, 2006 at 10:20 am
Awesome...both ways work. I tried KH's way and Pam's way of using:
BETWEEN '2006-05-01 00:00:00.000' AND '2006-05-01 23:59:59.000'
Thanks Guys!
May 3, 2006 at 8:49 am
I just checked, and DEenteredDate does have time, like this:
2006-03-15 11:13:57.000
so should my search be BETWEEN '2006-05-01 00:00:00.000' AND '2006-05-01 11:59:59.000' ?
May 3, 2006 at 8:25 am
Pam,
That does work, but shouldn't BETWEEN '2006-05-01 00:00:00.000' AND '2006-05-01 00:00:00.000' find all results with a PayDay(DEenteredDate) of 5/1/2006?
Thanks!
May 3, 2006 at 8:17 am
SQLBill,
Thank you for your suggestions. I tried using:
BETWEEN '2006-05-01 00:00:00.000' AND '2006-05-01 00:00:00.000'
But still no results were returned. I am not sure what the heck is going...
May 3, 2006 at 8:04 am
Viewing 15 posts - 91 through 105 (of 217 total)