Viewing 15 posts - 53,626 through 53,640 (of 59,068 total)
Heh... Exactly... couldn't have said it better myself!
... and... GO WINGS! WOO-HOO!
December 10, 2007 at 7:15 am
Karthik...
What about you... you all set?
December 10, 2007 at 7:06 am
I delete dups like this all the time:
delete d
from table k
join table d on k.matching = d.matching
where d.primarykey < k.primarykey
And I could swear this is set based, but maybe it's...
December 10, 2007 at 7:00 am
Ramesh (12/10/2007)
Apparently, you would be surprising to see some useful features disappeared!!!:D
Heh...you've got that right...
Thanks for the info, Ramesh... add one more chunk... the scripting options you told me about...
December 10, 2007 at 1:48 am
First, you must make the dates correct... the following code exemplifies the error... run it an see...
DECLARE @AnyDate DATETIME
SET @AnyDate = '12/8/2007'
SELECT @AnyDate + '11:59:59.999...
December 10, 2007 at 1:40 am
You bet, Sandy... thanks for the feedback.
December 10, 2007 at 1:27 am
If all the SKU's start with a numeric digit and nopne of the paths leading to the file have a digit anywhere in them, then the following demo code gives...
December 10, 2007 at 1:25 am
You are double posting... that'll get you thrown out of the "sandbox"... 😉
December 10, 2007 at 1:10 am
Of course the "code" must change... but the changes I made also make it more flexible...
DECLARE @Str VARCHAR(100)
SET @Str = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
SELECT LEFT(@Str,Number)
FROM...
December 10, 2007 at 12:40 am
Sandy (12/10/2007)
Hey Karthikeyan,Just have a Look on this Post.
http://www.sqlservercentral.com/articles/T-SQL/61539/
By Jeff Moden, 2007/12/06
Hope, you can get idea from this.
Cheers!
Sandy.
Ummm... thanks Sandy, but that whole article is about how bad triangular...
December 10, 2007 at 12:08 am
I'll show how, you explain why...
DECLARE @Str CHAR(6)
SET @Str = 'ABCDEF'
SELECT LEFT(@Str,Number)
FROM Master.dbo.spt_Values
WHERE Type = 'P'
AND Number BETWEEN 1 AND...
December 10, 2007 at 12:05 am
Proof! Oh heck yeah... I'm working on a bunch of proof right now! 😉
December 9, 2007 at 11:56 pm
GilaMonster (12/9/2007)
There are things that can be...
December 9, 2007 at 11:52 pm
Thanks... I'll give 'er a whirl. Funny how they've so radically changed the terminology...
December 9, 2007 at 11:48 pm
Think about it... 😉 See page 3 where they have the following code...
INSERT INTO [dbo].[Address_Temp] ( [FirstName], [LastName], [Address], [City], [State], [ZIP] )
SELECT [FirstName], [LastName], [Address], [City], [State], [ZIP]
FROM...
December 9, 2007 at 10:57 pm
Viewing 15 posts - 53,626 through 53,640 (of 59,068 total)