Viewing 15 posts - 646 through 660 (of 2,469 total)
Erik - if I've understood the requirements correctly, I think what you want to do is this...
INSERT INTO UserSpecialty
SELECT @UserId, UserSpecialtyCD
FROM Specialty
WHERE SpecialtyName IN ('Butcher', 'Baker',...
**ASCII stupid question, get a stupid ANSI !!!**
December 5, 2005 at 9:51 am
Pappo - until someone (Brian ?!?!) comes up with something less convoluted, you could use something like this...of course, the assumption is that all the "key" names are going to...
**ASCII stupid question, get a stupid ANSI !!!**
December 3, 2005 at 7:29 pm
Just as an fyi...epiphanies are always "sudden"....sorry - today is my "conservationist" day - no room for redundancies...![]()
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 2:27 pm
alright - chiming in! Rudy's mention of "a clockwork orange" really brought back memories - read & reread the book to tatters - ditto with "on the beach" & "the...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 1:11 pm
Ha ha - I was wondering who would "pick on" that...threw me off for a split second...or do I mean microsecond ?!?! ![]()
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 11:48 am
This is listed under Yukon and I don't know if sql 2005 has a method of getting this, but there was a similar decimal separator post on 2K that...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 10:03 am
lo siento...should have put it in quotes and told you that it was "tongue in cheek"..![]()
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 9:36 am
For portability and storing International Data...from BOL..
"International Data and Unicode
Storing data in multiple languages within one database is difficult to manage when using only character data and code pages. It...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 9:27 am
ciara - please do not cross post...noel - your friend has responded to the other thread
- as usual the comments are a "must...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 8:56 am
Don't you worry about my posts "drying up"...I get plenty of fodder from other threads..![]()
As for "keeping me on my toes"...yes indeed -...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 8:18 am
Yes - but you didn't think of the "minimalist" usage at first did you...had to make you put your thinking cap on, didn't I ?!?!...![]()
declare @waccessno varchar(20) set @waccessno = '000095011A-99-000462' if @waccessno...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 7:45 am
You have to use dynamic sql for this....
declare @churn varchar(20),@churn1 varchar(20)
set @churn='1005'
set @churn1='base'+@churn
print @churn1
--select * from @churn1 - INCORRECT
exec('select * from ' + @churn1)
read this wonderful article ...
**ASCII stupid question, get a stupid ANSI !!!**
December 2, 2005 at 7:24 am
Steve - the rule is that you have to sign in as yourself - else I'm going to retain my "Bunny" alias for as long as it takes... 
**ASCII stupid question, get a stupid ANSI !!!**
December 1, 2005 at 7:50 pm
Viewing 15 posts - 646 through 660 (of 2,469 total)