Viewing 15 posts - 601 through 615 (of 1,086 total)
As a general rule, Access writes its queries through Wizards from the inside out, (hence the RIGHT JOINs - which always throw me) but they often work for SQL Server. ...
September 1, 2005 at 10:54 am
Uh, uh..., I know. It cuts off the rest of the characters and you are @#$%. Right?!
(You may want to consider...
September 1, 2005 at 10:48 am
When you "assume"...
What problem are you having with the @@GlobalVariable?
September 1, 2005 at 10:43 am
This approach will allow to parse through each value within your existing SP. I personally would suggest using the pipe [ | ] as that is a very uncommon delimiter...
September 1, 2005 at 9:55 am
Do these fields relate?
Table1
(PK)DocumentHeadersID int 4 0
FileHeadersID int 4 1
Table2
(PK)DocumentTransactionsID int 4 0
(FK)DocumentHeadersID int 4 1
September 1, 2005 at 9:48 am
The GO was missing. Did you just add that along with the comments?
Thanks (great solution...). I was hoping to be able to do this without having to loop through...
September 1, 2005 at 9:40 am
I get an error: Server: Msg 156, Level 15, State 1, Procedure nmbPadd, Line 72
Incorrect syntax near the keyword 'declare'.
September 1, 2005 at 9:24 am
This is not dealing with the Alpha characters well, (I threw this together), but it might help someone smarter than I to get their brains working:
CREATE TABLE #Sort( [Value]...
September 1, 2005 at 8:29 am
ROLLBACK
COMMIT
REPLACE
(these could also be like Chinese fortune cookies and all you need to do is add "in bed" to the end...).
August 31, 2005 at 1:00 pm
I thought I'd get a rise out of you saying 'pretty'. Its actually an excellent track record.
August 31, 2005 at 12:56 pm
It may well benefit you to give us the context, etc. rgR'us has a 'pretty' good track record.
"Any society that would give...
August 31, 2005 at 12:52 pm
I agree with Lee. This will cause you a great deal of difficulty down the line.
I also agree that I liked Lowell's approach... ...
August 31, 2005 at 12:48 pm
You will probably need to use Dynamic SQL (either EXECUTE @sql or sp_executesql) . But, please read the following before you attempt this.
http://www.sommarskog.se/dynamic_sql.html 'The Curse and Blessings of Dynamic...
August 31, 2005 at 10:32 am
gotta love that sushila!!
August 30, 2005 at 11:57 am
Do some of your records have desp_day? In other words, will you only be updating those records which are NULL, or the entire table? And will this be part of...
August 30, 2005 at 11:47 am
Viewing 15 posts - 601 through 615 (of 1,086 total)