Viewing 15 posts - 2,116 through 2,130 (of 3,061 total)
jarrederoberts (4/6/2010)
April 6, 2010 at 2:57 pm
I agree with Grant, if the idea is to "practice" datawarehousing think of this data movement as a whole ETL a.k.a. Extract, Transform & Load - process.
Remember, datawarehousing has...
April 6, 2010 at 2:30 pm
I do think using a cursor is the right strategy.
Post suggest there are a number of secondary processes and tables involved, may be the process is slow because some of...
April 6, 2010 at 2:26 pm
Krasavita (3/18/2010)
Thank you very much
:crying: Is anybody concerned about referential integrity here? I bet whoever set that FK did it for a good reason.
April 6, 2010 at 12:04 pm
I would start by taking full table scans out of the picture by ensuring there are indexes in place to serve queries and updates.
I would also create/recreate indexes with a...
April 5, 2010 at 12:43 pm
I agree with Gregory. This approach should work just fine.
I assume that when you say "backup everything" you mean you are taking a physical backup of the whole server -...
April 5, 2010 at 12:33 pm
Taking into consideration most queries rely on cluster index on client+date - as I can see it partitioning by date will certainly hurt performance during querying.
As a result of partitioning...
April 5, 2010 at 12:28 pm
Are you trying to query a table that got dropped?
By the way, SQL Server does not keeps track of who drops and object but you can be certain was either...
April 5, 2010 at 12:15 pm
I've seen so many "duplicate rows" postings lately that I feel somebody has to tell people Microsoft is not charging a license fee per unique index.
Once you have a...
April 5, 2010 at 11:31 am
Paul White NZ (4/5/2010)
BSavoie (1/5/2010)
If it were called the Transaction Journal......I would expect to see it published monthly 😀
you made my day! 😀
April 5, 2010 at 11:26 am
Did you went to tables/details pane, right-click the table on which the trigger exists, point to AllTasks, and then click ManageTriggers?
April 5, 2010 at 11:19 am
Pranav Shah-410191 (4/5/2010)
Thanks guys, this helps me a lot. At least now I know why multiple databases are better than multiple schemas.
Glad to help
April 5, 2010 at 11:10 am
allenb-717661 (4/5/2010)
I see what you are saying and that might work but I'm not sure how to do it.
Please start by searching for "sliding window" in BOL; there is an...
April 5, 2010 at 11:08 am
Partitioning may be the answer for this archive and purge scenario.
Have you considered a sliding window on SERVER1?
You can send last partition rows to SERVER2 then truncate partition on SERVER1.
April 5, 2010 at 9:40 am
Steve Jones - Editor (4/5/2010)
including our vendors.
As a rule of thumbs I think on a new version of a product as the fullfilment of whatever the vendor promised for the...
April 5, 2010 at 9:09 am
Viewing 15 posts - 2,116 through 2,130 (of 3,061 total)