Viewing 15 posts - 1,171 through 1,185 (of 5,394 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...
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.
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.
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.
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...
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...
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/
September 18, 2014 at 1:19 am
And the question is?
Moreover, this is a SQL Server forum: no Oracle experts here.
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, ...
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
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.
August 1, 2014 at 2:06 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...
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...
May 23, 2014 at 3:19 am
Viewing 15 posts - 1,171 through 1,185 (of 5,394 total)