Viewing 15 posts - 2,311 through 2,325 (of 5,394 total)
I don't understand what multiple tempdb data files have to with memory usage.
Can you explain in more detail what's your issue exactly?
November 25, 2011 at 4:32 am
CREATE TABLE #TestTable (
Debt money
)
INSERT INTO #TestTable (Debt) VALUES (1)
INSERT INTO #TestTable (Debt) VALUES (2)
INSERT INTO #TestTable (Debt) VALUES (3)
ALTER TABLE #TestTable ADD TestColumn AS 'You owe $ ' +...
November 25, 2011 at 4:04 am
SQLCompare will do the trick.
It's a great product.
November 25, 2011 at 2:04 am
Columns to rows looks like a good fit for UNPIVOT.
However, I don't understand the expected output.
Can you please post your question according to the specs in this article[/url]?
November 25, 2011 at 2:03 am
Sorry, I'm a bit confused.
If I understand correctly, the new publisher displays a wrong distributor, right?
Change the distributor using sp_adddistributor. See here for more detail.
Hope this helps
Gianluca
November 25, 2011 at 1:41 am
If you can afford some downtime, the simplest way to do this would be a backup/restore with move to the new storage. Detach/attach would do the trick as well.
Another option...
November 24, 2011 at 2:26 am
If the code was not changed, you should check if the physical structures changed. I mean you should look at the indexes and stats on the table(s).
Also, make sure you're...
November 24, 2011 at 2:20 am
Send the e-mail from within a trigger.
Use the INSERTED logical table to capture the new records only.
Hope this helps
Gianluca
November 24, 2011 at 2:16 am
OH! I think I'm the main culprit for this thread. π
I say 2c because it's both my opinion and what it's worth. During the last few years it has become...
November 24, 2011 at 1:45 am
PaulB-TheOneAndOnly (11/23/2011)
Dev (11/23/2011)
Oracle gives control to copy / not copy statistics in backup / restore.Not true.
You mean "logical" backups (imp/exp), I suppose.
November 23, 2011 at 10:21 am
Dev (11/23/2011)
Roy Ernest (11/23/2011)
As far as I know when a Back up is done, it preserves the Stats as well.
Can you please lead me to some evidence?...
November 23, 2011 at 7:58 am
Roy Ernest (11/23/2011)
As far as I know when a Back up is done, it preserves the Stats as well.
I would be very surprised of the contrary.
@dev: try it...
November 23, 2011 at 7:55 am
Good points, but you can achieve the same with schemas as well.
Dev (11/22/2011)
β’It would be a Big Database so Big backup / restore files & requires more time.
You...
November 23, 2011 at 4:00 am
It's an I/O intensive operation, so I guess it will affect the whole server.
November 22, 2011 at 10:18 am
Can you post the command you tried?
November 22, 2011 at 9:51 am
Viewing 15 posts - 2,311 through 2,325 (of 5,394 total)