Viewing 15 posts - 31 through 45 (of 60 total)
A way to see if the logging is the issue might be to check the size of the log after each test - making sure to truncate the log prior...
February 19, 2009 at 12:49 pm
By exporting the data, I meant exporting each table to flat files - delimited or fixed, compressing and copying those - not compressing and copying the database files. ...
February 11, 2009 at 4:17 pm
If network bandwidth is most critical, you will most likely have to export the data to local disk, then compress, push across, uncompress at the destination, then load.
Hopefully it will...
February 11, 2009 at 8:03 am
I totally concur with hakan. Here is another thread dealing with a similar design question. It did not include the middle assign table, but I think might be...
January 15, 2009 at 8:39 am
LOL, it has been quite a day so far - 2 bad responses on my part...it has definitely taught me to read the OP carefully - and not in a...
January 8, 2009 at 8:30 am
oops, you are right, I answered a different question...sorry
jg
January 8, 2009 at 7:58 am
Lookup the ROW_NUMBER function in BOL. It should do the trick for you.
jg
January 8, 2009 at 7:55 am
Of course it depends , but I would look lean towards the separate tables. A bit hairier to manage, but most likely easier data maintenance, and possibly performance....
January 8, 2009 at 7:44 am
I would recommend adding a step to Jan's solution.
run the CHECKDB without the REPAIR_ALLOW_DATA_LOSS first - the REPAIR_ALLOW_DATA_LOSS should send shivers down your spine :w00t:
then review the output from the...
June 25, 2008 at 7:53 am
You are getting a duplicate PK error? My guess is the rowguid is NOT the PK - merge creates a unique index to enforce the rowguid.
after a merge, the...
June 12, 2008 at 11:57 am
I believe the uniqueness is based on the MAC address of the NIC - those should be globally unique. We use merge with approx 500 subscriptions and have had...
June 12, 2008 at 8:55 am
I would recommend using the SQL2005 system view sys.master_files rather than sysaltfiles - if you do not need backward compatibility with 2000.
jg
April 17, 2008 at 11:50 am
Mr. Moden,
your moralizing was better than mine...:)
jg
April 1, 2008 at 2:25 pm
I went back to get the timings from our tests. I was mistaken, this was a financial_transactions design not inspections ( this was 1.5 years ago ;)). There...
April 1, 2008 at 1:14 pm
Viewing 15 posts - 31 through 45 (of 60 total)