Viewing 15 posts - 19,966 through 19,980 (of 26,490 total)
Like this:
declare @ADateTime smalldatetime;
set @ADateTime = '2009-07-05 09:00:00';
select @ADateTime, year(@ADateTime);
You may want to spend some time reading Books Online (BOL, the SQL Server Help System that may be accessed from...
July 6, 2009 at 9:58 am
This?
declare @TestInt int;
set @TestInt = 425699;
select cast(@TestInt/100.00 as decimal(10,2);
July 6, 2009 at 9:52 am
There really isn't enough information to provide a really good answer. Could you provide the DDL for the table(s) involved, sample data (in a readily consummable format that can...
July 6, 2009 at 9:46 am
It isn't a stupid question at all. the problem I see with it is that it is extremely broad and vague.
Perhaps you could provide more background information regrading what...
July 6, 2009 at 9:18 am
WayneS (7/6/2009)
Lynn Pettis (7/6/2009)
Mario Garcia (7/6/2009)
I have used a function to parse data. It can be altered some to fit your needs.
You may want to search this site a...
July 6, 2009 at 9:12 am
bozworth hollinz (7/6/2009)
ah, found this nifty link in relation to the dynamic connections in SSIShttp://www.sqlservercentral.com/articles/Video/64262/
Just curious, does anyone use the SQL table for storing their configurations?
We also use a...
July 6, 2009 at 9:10 am
Mario Garcia (7/6/2009)
I have used a function to parse data. It can be altered some to fit your needs.
You may want to search this site a bit. You...
July 6, 2009 at 8:07 am
We haven't moved to a production environment yet, but what I am curious about is your comment about modifying meta-data in your packages. What meta-data did you have to...
July 6, 2009 at 7:55 am
GilaMonster (7/6/2009)
Lynn Pettis (7/5/2009)
I concur, your db design is flawed, and fails the 3NF.
It's violating BCNF if I'm not mistaken. There's no inter-data dependency (so passed 3NF) but there is...
July 6, 2009 at 7:01 am
WayneS (7/5/2009)
Lowell (7/5/2009)
July 5, 2009 at 10:01 pm
Digs (7/5/2009)
Every one is a comedian.Life of Brain ! ( I am kidding )..
A little humor helps a bit...
With that, though, Jeff really wasn't kidding when he asked you to...
July 5, 2009 at 9:53 pm
Jeff Moden (7/5/2009)
Lynn Pettis (7/5/2009)
Now, one last little ribbing. You spelled BRAIN incorrectly in you post header. 😛Heh... Picky, picky, picky...
Hey, I could have said something at the beginning but...
July 5, 2009 at 9:11 pm
Now, one last little ribbing. You spelled BRAIN incorrectly in you post header. 😛
July 5, 2009 at 6:24 pm
Digs (7/5/2009)
1A10
2B20
3C30
Where did the column 'ItemID' come from, have you made changes to the 'DelimitedSplit' function, by allowing and 'Identitiy field ' (increment at 1) ....
July 5, 2009 at 6:22 pm
You have much to learn padawan.
Here:
declare @Str1 varchar(8000),
@Str2 varchar(8000),
@Str3 varchar(8000);
set @Str1 = '1,2,3';
set @Str2...
July 5, 2009 at 5:30 pm
Viewing 15 posts - 19,966 through 19,980 (of 26,490 total)