Viewing 12 posts - 1 through 12 (of 12 total)
I worked in technology for four years and find it completely ridiculous that a company would try to do this to their employees. Supporting over 1000 pc/laptops/servers; you'll be...
January 26, 2009 at 6:43 am
No, if you are looking for not in insert table. Left join where null shows all data in main table and not in join table.
January 22, 2009 at 7:41 pm
shahab (1/22/2009)
insert into T_D
...
January 22, 2009 at 7:17 pm
I don't agree with this; "Efficient in their eyes, not yours"
This is probably one of the hardest things to do but; both you and the customer must think it's efficient....
January 22, 2009 at 5:29 am
What kind of authentication are you using to connect to the file? Sounds like user running job does not have access to file.
January 20, 2009 at 7:53 pm
I would compare the not exists query with a left join query. Exists should be used to start a process not compare data; imo.
January 20, 2009 at 9:13 am
You can't have duplicate PKs. I think you want something like this.
INSERT INTO [SAP_PERF_HIST].[dbo].[DB_PARAM_HIST]
...
January 20, 2009 at 8:56 am
I would import into a staging table. Your SP will reference the staging table and final distination table. This will also help if the package fails; although the...
January 20, 2009 at 7:17 am
florianb86 (1/20/2009)
if i say that i have to transform some data types you will killing me, right? 😉
I would say welcome to SSIS. Read up and use a data...
January 20, 2009 at 7:08 am
Place tsql in a stored procedure; makes it easy for updating. Would also use a left join over and if exists approach.
select id from toTable t
left join...
January 20, 2009 at 6:51 am
Like mentioned above it's how you read "Databases with simple recovery model will be exluded". This is just excluding the DBs from the selection list. The problem I...
August 21, 2008 at 7:20 am
I'm using the all users database option. So I can see why the database would be backed up. But microsoft makes it look like they will be excluded...
August 20, 2008 at 6:31 pm
Viewing 12 posts - 1 through 12 (of 12 total)