Viewing 15 posts - 1,171 through 1,185 (of 5,393 total)
If you want to keep your log size small, take backups more frequently and ship the logs right away.
If you need to keep an older copy of your database, you...
-- Gianluca Sartori
September 18, 2014 at 1:59 am
You could wait for the job to complete in a loop from QlikView.
It can be done quite easily in a stored procedure.
-- Gianluca Sartori
September 18, 2014 at 1:43 am
I rarely use maintenance plans, also for this reason.
Use a plain T-SQL script in a job step instead.
-- Gianluca Sartori
September 18, 2014 at 1:38 am
Indexes have to be scripted manually from publisher to subscriber. Maybe a powershell script could help you.
Index maintenance has to be run on both publisher and subscriber.
-- Gianluca Sartori
September 18, 2014 at 1:33 am
32 GB is not a huge amount of RAM: get more if you can. Obviously, unless your databases are so small that they fit in RAM anyway.
As far as bus...
-- Gianluca Sartori
September 18, 2014 at 1:26 am
GrassHopper (9/18/2014)
Can you give me an example of how to do this?
Sure. Give us some data in a consumable format and you'll get the answer right away.
Read the first article...
-- Gianluca Sartori
September 18, 2014 at 1:22 am
RESTORE VERIFYONLY is what you're looking for.
Relevant info here:
http://technet.microsoft.com/en-us/library/ms188902(v=sql.110).aspx
http://www.mssqltips.com/sqlservertip/1093/verifying-backups-with-the-restore-verifyonly-statement/
-- Gianluca Sartori
September 18, 2014 at 1:19 am
And the question is?
Moreover, this is a SQL Server forum: no Oracle experts here.
-- Gianluca Sartori
September 18, 2014 at 1:15 am
I'm not sure I understand what you mean.
Maybe this?
WITH sampleData AS (
SELECT *
FROM (
VALUES
(32, 123, 'test', 'A'),
(32, 124, 'test2', 'A'),
(55, 125, 'test', 'B'),
(55, ...
-- Gianluca Sartori
September 12, 2014 at 3:09 am
The easiest tool for this job is an audit.
More information can be found here: http://msdn.microsoft.com/it-it/library/cc280386.aspx
-- Gianluca Sartori
August 1, 2014 at 2:19 am
Good luck with that...
There's a tool that does the exact opposite, but I don't know if Oracle provides one.
-- Gianluca Sartori
August 1, 2014 at 2:06 am
Oooops! I hit the wrong button...
-- Gianluca Sartori
August 1, 2014 at 1:59 am
cdm33.com (7/30/2014)
This code has hundreds of lines to it. I've got no clue what it does. I'm not going to put something like this on a production server...
-- Gianluca Sartori
August 1, 2014 at 1:57 am
GilaMonster (5/23/2014)
spaghettidba (5/23/2014)
SELECT ... INTO holds a schema lock on the source table that can end up blocking other processes.It does not.
Thanks for correcting me, Gail.
I remember I had...
-- Gianluca Sartori
May 23, 2014 at 3:19 am
Viewing 15 posts - 1,171 through 1,185 (of 5,393 total)