Viewing 15 posts - 181 through 195 (of 240 total)
I appears that your table [dbo].[PICK_RELEASED_ORDERS] contain one row per line item, rather than one row per order -- is that correct? Also, it appears then that the code that...
June 3, 2010 at 10:08 am
elutin (5/22/2010)
May 22, 2010 at 7:34 am
elutin (5/21/2010)
IS DRAWING PICTURES
(switch to text output before execution):
select '0000^===========\0000' as [picture]
union select '000/^\__________\\000'
union select '00//0\\__________\\00'
union select...
May 21, 2010 at 4:56 pm
May 21, 2010 at 3:46 pm
Nice tweak, Jeff. Not perfect -- won't allow for years prior to 2000 (and I, for one, have a birthday before 2000 :hehe:) -- but a definite improvement.
May 18, 2010 at 6:46 pm
I do not think ISDATE() is a good way to solve the problem OP has. Also, given the anomalies, I was wondering when would you use ISDATE() and be sure...
May 18, 2010 at 12:37 pm
You'll have to be a little more specific in your question. It is not clear what you are asking for.
It sounds like you want to call a SQL function...
May 18, 2010 at 9:48 am
sql.kishore1 (5/17/2010)
(id int,
date Varchar(20)
)
insert into TestTable values(2,'08/31/1984')
insert into TestTable values(1,'07/12/2005')
insert into TestTable values(3,'08/31/0002')-- in this row i inserted 0002 intentionally my data had some errors like that.
declare...
May 17, 2010 at 5:34 pm
You're using 3 temporary tables in your query -- what is populating those tables when you run this in each of the two scenarios you mention?
May 17, 2010 at 5:18 pm
Maybe you should log in to the machine at about 10:45pm and see what file has gotten larger, or if there is some file other than a .MDF file that...
May 12, 2010 at 10:59 am
Mark-101232 (5/5/2010)
Try this
CREATE FUNCTION dbo.InsertCommas(@s VARCHAR(100))
RETURNS VARCHAR(100)
AS
BEGIN
SELECT @s-2=STUFF(@s,Number,0,',')
FROM master.dbo.spt_values
WHERE Number BETWEEN 2 AND LEN(@s) AND type='P'
ORDER BY Number DESC
RETURN @s-2
END
Beautiful. I like this. Would probably be...
May 5, 2010 at 2:51 pm
I'm not up on Access 2003, so it may be that it is not ANSI-92 compliant. Go back to using the FROM clause you initially supplied (without the JOIN...ON syntax)...
May 3, 2010 at 4:31 pm
reg 18234 (5/3/2010)
Rob Schripsema (5/3/2010)
reg 18234 (5/3/2010)
May 3, 2010 at 3:49 pm
reg 18234 (5/3/2010)
May 3, 2010 at 11:54 am
On second thought, maybe we don't want the full text of your view.:w00t:
Select GetDate() will always return the current system date and time.
The concept of "when the record was...
April 27, 2010 at 9:31 am
Viewing 15 posts - 181 through 195 (of 240 total)