Viewing 15 posts - 2,086 through 2,100 (of 2,469 total)
Remi - I cannot afford to not be friends - once I've learned everything you have to teach then maybe....<;-)
As for fearing the look of others...most people on scc are...
June 23, 2005 at 1:31 pm
Hey - no gender based remarks s'il vous plait!
You get me started on those and you will LOSE big time! You may be the master of t-sql but us women...
June 23, 2005 at 12:38 pm
problem is solved for now!
ps:It's more fun following other posts than starting your own because you (at least I) learn so much more that way! <;-)
June 23, 2005 at 12:08 pm
Remi - I never posted my problem (I HATE asking for help - big drawback! 🙁
I just followed some of your reponses to "other" posts and figured out my solution...
June 23, 2005 at 11:55 am
I second that - this is a display issue, not a storage one!
Remi - on an aside I wanted to tell you that I was struggling with a query for...
June 23, 2005 at 11:34 am
Here's a link to something similar - except in this case it was the first occurence not the max...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=191860#bm192527
June 23, 2005 at 7:04 am
Are these the only columns you have - no primary key or ID column ?!
June 23, 2005 at 7:01 am
You're passing only a string value to convert - you need to first change it to datetime type...try this:
select convert(char(10), cast('2004-12-22 11:36:02.000' as datetime), 101)
June 22, 2005 at 8:26 pm
sorry about the double post - something went funky just as I was posting the reply...
June 22, 2005 at 7:43 pm
If you're selecting from a single table then you do:
select cityname = case
when cityID is null and RegionID is null then ''
else cityname
end
from listingtable
you can tweak this to...
June 22, 2005 at 7:41 pm
If you're selecting from a single table then you do:
select cityname = case
when cityID is null and RegionID is null then ''
else cityname
end
from listingtable
you can tweak this to...
June 22, 2005 at 7:41 pm
tscott - I'm still a little confused - if you're designing new tables and views each (tax) year to tweak something - why aren't you just "creating" instead of "renaming"...
June 22, 2005 at 1:08 pm
I hope you aren't counting them Remi - you'll run out of fingers and toes long before I stop adding to my oops list...
ps: Unless you're using a 'select count(*)'...
June 22, 2005 at 12:17 pm
You're right about that loyalty!
I made the mistake of submitting an article to the company newsletter about the +s of telecommuting where I said that I would take a telecommuting...
June 22, 2005 at 12:13 pm
Kelly - thanks for sharing the location - so if Tulsa is going from "for the most part very conservative" to trials successful enough to motivate other departments that's great...
June 22, 2005 at 9:15 am
Viewing 15 posts - 2,086 through 2,100 (of 2,469 total)