Viewing 15 posts - 1,621 through 1,635 (of 1,825 total)
Hi Paul ,
IMO SSIS is a bit of a beast and has quite a steep learning curve.
You can email direct from sqlserver though , i would suggest taking that route...
August 21, 2009 at 1:17 am
grover (8/21/2009)
I thought about creating a single "master" table but I don't want to run an INSERT statement 77 times.
How about creating a view ?
Create View MasterView
as
Select Col1,Col2,Col3...
August 21, 2009 at 1:07 am
As a general rule of thumb , to quote Michael Rys (MS XML SqlServer
program manager)
http://www.itwriting.com/sqlxml.php
"If your data fits the relational model, you’re probably better off probably still taking the XML...
August 21, 2009 at 12:57 am
Jeff Moden (8/20/2009)
Now... that's an interesting, different, and simple way to isolate the delimiters... and I'm not talking about the use of a numbers/Tally table. Thanks, Dave... I've got...
August 20, 2009 at 8:27 am
What makes you think that substring returns words ? It returns characters ?
Try This
declare @MyString varchar(255)
select @MyString ='one two three four five'
;with Num1 (n) AS (SELECT 1 UNION ALL SELECT...
August 20, 2009 at 3:31 am
setlan1983 (8/20/2009)
Just in case where someone changed the entryt.EntryDateTime accidently, need show the record in exit table also.
But WHICH exit row for WHICH entry row ?
Presumably 'Bob' will enter and...
August 20, 2009 at 3:15 am
August 20, 2009 at 2:03 am
Sorry , but you are going to have to provide more detail ? I really dont understand what you want.
Please provide test data and an example of the data you...
August 20, 2009 at 2:02 am
Which is correct because you have not specified a scale in the decimal. Check Bol
select CAST(0.5 as decimal)
select CAST(0.5 as decimal(10,5))
August 20, 2009 at 1:48 am
setlan1983 (8/20/2009)
but if I have a case where entryt.EntryDateTime does not match with exitt.EntryDateTime, and I still need to display the record out, how to do that?
Then what is the...
August 20, 2009 at 1:29 am
between does greater than or equal to and less than or equal to , so from what you've said ,"returned records whose start time is 20/08/2009 10:00:00", SQL seems to...
August 20, 2009 at 1:13 am
Lynn Pettis (8/19/2009)
IIRC, this is how *nix stores date/time values.
Yup , no magic mystical powers involved 🙂
August 19, 2009 at 9:36 am
its because youve used float as your column definition , which by definition will contain an approximate value.
from bol
Approximate numeric data types do not store the exact...
August 19, 2009 at 9:29 am
try
select @COUNT = count(*) from tablename where last_name = 'Brown'
August 19, 2009 at 9:24 am
Viewing 15 posts - 1,621 through 1,635 (of 1,825 total)