Viewing 15 posts - 1 through 15 (of 317 total)
You could do this in powershell and use Export-Csv.
January 21, 2015 at 10:08 am
Lowell (1/16/2015)
ya'll missed the southern naming influece here. i always say it's this:
.ndf = "nother" data file
+1
January 16, 2015 at 5:12 pm
Merge replication uses GUID columns to keep track of unique rows.
So the delete is using the GUID value in the where clause.
The dependency on the GUID also makes it so...
January 16, 2015 at 1:08 pm
You are running into the two hop problem.
This is why most linked server connections use a SQL auth login.
January 16, 2015 at 12:34 pm
sqlGDBA (1/16/2015)
Set the database recovery model to simple. It should at least reduce the logging.
If the issue is a growing error log, putting a database in simple recovery model will...
January 16, 2015 at 12:26 pm
Also there are many table diff tools out there. I know Redgate has one.
January 5, 2015 at 2:38 pm
You could just use snapshot replication, scheduled once a day.
Tables on target instance would not be usable during load.
Another option would be change data capture and load modified data once...
January 5, 2015 at 2:37 pm
How often does the refresh need to run?
How big are the tables?
What are the availability requirements during the "refresh"?
What are the different versions of the two instances?
January 5, 2015 at 12:47 pm
What specifically are you skeptical about? You question is a bit vague
December 16, 2014 at 3:49 pm
Recently I have been doing a proof-of-concept implementation of Apache Kafka.
I am very impressed with it performance and simplicity.
December 4, 2014 at 5:14 pm
I would say monitor the fragmentation and keep doing reorg.
Then look at the rebuild options, in particular parallelism.
Also when you run rebuild, make sure your data files and log files...
November 25, 2014 at 5:54 pm
spaghettidba (11/21/2014)
On the few 2008 servers we still have, we're using PowerShell in a SQLAgent job.
Same here
November 25, 2014 at 2:25 pm
Books online suggest reorg if fragmentation is < 28%
November 25, 2014 at 2:24 pm
Still you have not indicated the level of fragmentation of the tables.
What is the % fragmentation?
Do you have a test system on which you can test rebuilding and see how...
November 25, 2014 at 10:09 am
Viewing 15 posts - 1 through 15 (of 317 total)