Viewing 15 posts - 241 through 255 (of 5,356 total)
Please avoid posting the same question multiple times.
May 31, 2005 at 5:36 am
Is this related to this question?
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=185868
May 31, 2005 at 5:36 am
Forgot to add. Create the new table first and add an INSERT INTO newtable before the SELECT.
May 31, 2005 at 5:33 am
select min(userid), count(*) from tLogins
where userid>=1 and userid<=20
group by userid
May 31, 2005 at 5:26 am
Well, then...
Q1: Have a look at BOL for NOT EXISTS. You don't remove duplicates with it, but rather insert only those rows that...
May 31, 2005 at 5:24 am
Counterquestion:
Q1: You are aware of SQL Server's Books Online?
Q2: You have searched this forum for answers?
May 31, 2005 at 5:09 am
Now if this has helped, and you're a lazytyper, this should also work
select left(datename(month, < your column > ),3)
May 31, 2005 at 2:34 am
I would consider this a task for your presentational layer. anyway, does this help?
select left(convert(varchar,<your column >,100),3)
May 31, 2005 at 2:29 am
Piggy-backing on Dave, SQL Server doesn't not automatically reclaim space unless this space is needed for inserting a new row.
May 31, 2005 at 2:15 am
Google groups beta sucks...
I had this thread in mind http://snipurl.com/f95u
May 31, 2005 at 12:57 am
Isn't it strange? I have an evening off, kids are asleep very early and I hang around this forum.
Okay, I've just created a...
May 30, 2005 at 2:32 pm
I would contact MS PSS to help you out here.
May 30, 2005 at 1:21 pm
Maybe this will give you some ideas.
create procedure dbo.validatedate @inputdate char(6)
as
declare @31st datetime
set @31st = '19001031'
select dateadd(month, datediff(month,@31st,cast(@inputdate+'01' as datetime)),@31st)
--your other stuff goes here
return
go
exec dbo.validatedate '200501'
drop procedure dbo.validatedate
But as...
May 30, 2005 at 1:18 pm
Has your developer experienced any issues with this word?
May 30, 2005 at 12:56 pm
Maybe you get some additional ideas here: http://www.sommarskog.se/share_data.html
May 30, 2005 at 12:52 pm
Viewing 15 posts - 241 through 255 (of 5,356 total)