Viewing 15 posts - 76 through 90 (of 272 total)
I haven't had time to check out any strange implications this may have but I would experiment with synonyms
You can create a synonym for a dbname.schema.name.tablename combination, so your code...
February 29, 2012 at 9:52 am
You need to investigate what is going on with DTC (Distributed Transaction Coordinator)
Is it running on both machines involved?
Can the two DTC instances communicate? - it is a long...
February 28, 2012 at 1:19 am
As always - it depends.
Lets say you have a table of 100 million rows and your ETL is inserting/updating a few thousand.
In that case dropping amd recreating constraints is...
January 23, 2012 at 3:50 pm
Personally I always include the as, and I wish it was mandatory to aid readability.
Mostly personal preference I suppose regarding the readability side, but I also find for...
January 23, 2012 at 3:44 pm
Just migrating stored procedures from an older version to new does not require (nor benefit) from with recompile option.
Generally the idea of a stored procedure re-using the compiled plan is...
January 23, 2012 at 7:32 am
There is not normally a need to. What exactly makes you think you should need to do this - especially fo rone row?
Normally the space will be reused a new...
January 10, 2012 at 12:25 am
Rather a broad question - have you any specific error messages to go on? In what context was this asked?
Mike
January 9, 2012 at 2:12 am
I would also have the table defined WITH the three columnns that are being added rather than create it/load it /add columns.
Make them non-nullable with default values if possible and...
January 7, 2012 at 10:58 am
My immediate reaction is don't do it.
I would have a separate xref table for each of the many:many relationships that you need for the following reasons:
a) It more clearly...
January 5, 2012 at 2:59 pm
If the main problem is ETL loading speed I would also look at a few configuration details:
a) You say the data file is all on one disc - where are...
January 5, 2012 at 2:44 am
If you have an encrypted database it can compress very poorly, so it is often worth ensuring no compression is selected for a database that is encrypted.
December 28, 2011 at 1:35 am
It sounds like you are backing up to the same file every time, and you have multiple backups in the one file.
Various choices, you say you are new to this,...
December 22, 2011 at 1:25 am
Its is not likely many people can help remotely, but give us some details to work with.
a) DO you have a backup?
b) Can you restore it to a clean db?...
December 9, 2011 at 6:53 am
Before you worry anout tools what recovery model is the db in?
Redgate do one - http://www.red-gate.com/products/dba/sql-log-rescue/
I have not used it personally but have heard good reports
Mike
December 9, 2011 at 6:49 am
I think your only option is restore most recent backup to a different database, and then extract the lost data from the restored backup and re-insert it to the original...
December 9, 2011 at 6:46 am
Viewing 15 posts - 76 through 90 (of 272 total)