Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Difference between alter system and alter database?
"Peter" <peter_at_nomorenewsspammin.ca> wrote in message
news:dj4kbv0d902to5qh0rd7inqri4tuauhgk1_at_4ax.com...
> What is the difference between alter system and alter database?
> When do you use one over the other?
>
Rule of thumb:
alter system to change the instance characteristics (instance is temporary;
SGA + background processes)
alter database to change the database characteristics (database is
permanent; the files on the disks)
So for example, one would
alter system set job_queue_processes = 0
to disable all job processing until next time the instance is restarted (9i:
subject I suspect to scope)
or
alter database rename global_name to something_else_at_office.com for a change
which 'sticks'.
Regards,
Paul
Received on Wed Jun 11 2003 - 14:42:35 CDT
![]() |
![]() |