Viewing 15 posts - 16 through 30 (of 88 total)
That is kinda what I was thinking but experience tells me to tread lightly before stomping my foot.
Thanks
June 12, 2007 at 1:58 pm
I am totally impressed with Dimensional insight's Diver. Great for adhoc analysis and pretty intuitive but it would really depend on your users and how they want to use it....
February 28, 2007 at 12:47 pm
You can right a sql statement the uses the two tables or use two lookup tasks.
January 3, 2007 at 5:31 pm
There are two formats for fixed width - one has a extra column for the deliminated row value. Have you tried that? Unfortunately I do not work with fixed width...
October 31, 2006 at 1:14 pm
Go into the advance tab of your destination (flat file) connection. There is an editor for all of your columns there. You can see what the deliminator is for each...
October 31, 2006 at 10:47 am
Your update is comparing one variable to another and never asks which record to update. As long as @status = 'Platinum' or 'gold' etc and @location is...
October 24, 2006 at 12:30 pm
While the information you are getting is invaluable --why make systables your first stop? Information_schema views are much more user-friendly. (Table_name vs object_name(id)). And they upgrade better.
Only bugger with Information_Schema views...
October 20, 2006 at 11:21 am
If it was a named instance it might need the config file changed. You might double check your config settings any (BOL:Configuring the Integration Services Service)
October 6, 2006 at 9:26 am
Is this a default or named instance?
October 5, 2006 at 2:23 pm
Been working with exports all day
I didn't test this completely but I believe if you go to the columns tab in the flat file...
October 5, 2006 at 2:15 pm
New Horizon's T-SQL course is pretty good. They are all over the country.
August 3, 2006 at 2:55 pm
set
nocount on
declare
@col nvarchar(200), @n int
select
@n
July 23, 2006 at 4:22 pm
The temp table is better - table vars are good for tiny record sets only. (like less than 40 records and narrow.) Reason a var is faster is becuase it...
July 17, 2006 at 1:57 pm
You have more than one option but you need to test them for best performance. It seems to depend on the number of variables you have to make optional. Sometimes...
July 17, 2006 at 1:40 pm
here is the join:
select
A000.Expiremonth,
case when all.refid is null then A000.refid else all.refid end as refid,
case when all.amount is null then A000.amount else all.amount end as amount...
July 17, 2006 at 6:29 am
Viewing 15 posts - 16 through 30 (of 88 total)