Viewing 15 posts - 3,106 through 3,120 (of 6,401 total)
If your unsure which ones where deleted, then you cant delete them, ask for a full export every time, not just an incremental update, then you can just upload the...
December 17, 2012 at 3:03 am
Use a merge command, load the incremental data into a staging table the use merge to insert update or delete based on the unique column(s) of the row.
December 17, 2012 at 2:48 am
Poor Performing SQL Part 1 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/
Poor Performing SQL Part 2 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-2/
December 17, 2012 at 2:36 am
Visio, Sybase Powerdesigner, sure if you do a search on Google (other search engines available) you will be able to find more.
December 14, 2012 at 4:24 am
Yeah you could look at the merge transformation data task to do what you need, but will have to ensure you handle the updates correctly.
December 14, 2012 at 4:16 am
Use linked servers
Either create a Link on destination to the source, or a Link on the source to the destination.
Then just change the srcipts to match.
If link done on the...
December 14, 2012 at 4:03 am
Use linked servers
December 14, 2012 at 3:55 am
Then you need to do a two stage approch, load new data using left outer join, then update anything where the data modified dont match.
For new rows
INSERT INTO DestinationDB.DestinationSchema.DestinationTable
SELECT
Source.Col1,
....
....
....
FROM
SourceDB.SourceSchema.SourceTable Source
LEFT...
December 14, 2012 at 3:41 am
But do you have anything which tells you when a row has been updated, or do you not bother about shipping over the updated rows?
December 14, 2012 at 3:33 am
Do you have any timestamp columns or something which identitifes when rows where updated, created etc?
December 14, 2012 at 3:30 am
Image stores the 16 byte pointer data in-row, the actual image data is farmed off to the the large object tree and the pointer details which pages make up the...
December 14, 2012 at 3:23 am
Duplicate post, all replies here please.
December 14, 2012 at 3:11 am
SQL has one built in, which you can get to by creating the database diagram in the database diagram under the database object in SSMS.
December 14, 2012 at 3:10 am
1 ForEach loop with 1 flat file connection, grabs the files from a sub folder, changes the connection string of the ffc at loop time.
The issue now comes down with...
December 13, 2012 at 8:30 am
Bhuvnesh (12/13/2012)
select [BusinessEntityID] , [Name] from...
December 13, 2012 at 4:38 am
Viewing 15 posts - 3,106 through 3,120 (of 6,401 total)