RE: database link questions

2001-09-24 Thread Jenkins, Michael
Try this: alter database rename global_name to test; -Original Message- Sent: Monday, September 24, 2001 2:24 PM To: Multiple recipients of list ORACLE-L Ok, this is 8.1.6 no patches applied on solaris. Global Names = false No db_domain name set Altered the global names in the database

Re: database link questions

2001-09-24 Thread John Carlson
Can you be more specific?  I am curious also.  When I create a link to a database on 'xxx' it comes out 'xxx.cj.com' which is correct but I began looking around and I don't see how it is working.  In our initxxx.ora file we have 'db_domain = WORLD'.  In the sqlnet.ora file we have #NAMES.DE

RE: database link questions

2001-09-24 Thread Gogala, Mladen
1 2:24 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: database link questions > > > Ok, this is 8.1.6 no patches applied on solaris. > Global Names = false > No db_domain name set > Altered the global names in the database and get > test.us.oracle.com

RE: database link questions

2001-09-24 Thread Kathy Duret
Ok, this is 8.1.6 no patches applied on solaris. Global Names = false No db_domain name set Altered the global names in the database and get test.us.oracle.com still and still get us.oracle.com extenstion of the link. Where else do I look or do? This will be a private database link. Thanks Kat

Re: database link questions

2001-09-24 Thread Ruth Gramolini
The extension on a database link is always the domain of the database it is created in. HTH, Ruth - Original Message - To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]> Sent: Friday, September 21, 2001 6:16 PM > I try to create a database link named Custom, it ends up as: >

database link questions

2001-09-21 Thread Kathy Duret
I try to create a database link named Custom, it ends up as: Custom.us.oracle.com when I query the dba_db_links table. I don't want the .us.oracle.com extension. What can I do, where does this extension come from? Global Names? I see that my global name is TEST.US.ORACLE.COM Do I need to alter

SharePlex Questions

2001-09-21 Thread Mike J Kurth
I am evaluating SharePlex and I have some questions: In the current release, do the foreign key constraints need to be disabled in the target database? Doesn't it take a while to enable the foreign keys during failover? How did you handle switching the users over to the target database?

Re: RMAN catalog Recreation Problems/Questions ....

2001-09-14 Thread Anjan Thakuria
using > normal > upgrade procedure. I must upgrade to base line release first(8.1.7.0.0) > and > then patch needs to be applied. Since patch was already applied, my only > option > could be to recreate the catalog database in 8.1.7.1.0 and then DO THE > FULL > IMPORT. My

RE: RMAN catalog Recreation Problems/Questions ....

2001-09-14 Thread Janardhana Babu
upgrade to base line release first(8.1.7.0.0) and then patch needs to be applied. Since patch was already applied, my only option could be to recreate the catalog database in 8.1.7.1.0 and then DO THE FULL IMPORT. My questions would be: [1] Do I need to do the FULL IMPORT of the catalog database? and

Re: RMAN catalog Recreation Problems/Questions ....

2001-09-14 Thread Ruth Gramolini
g > normal > upgrade procedure. I must upgrade to base line release first(8.1.7.0.0) > and > then patch needs to be applied. Since patch was already applied, my only > option > could be to recreate the catalog database in 8.1.7.1.0 and then DO THE > FULL > IMPORT. My

RMAN catalog Recreation Problems/Questions ....

2001-09-14 Thread Janardhana Babu
already applied, my only option could be to recreate the catalog database in 8.1.7.1.0 and then DO THE FULL IMPORT. My questions would be: [1] Do I need to do the FULL IMPORT of the catalog database? and then issue the "upgrade catalog" command twice to upgrade the catalog to work with

RMAN catalog Recreation Problems/Questions ....

2001-09-14 Thread Janardhana Babu
applied. Since patch was already applied, my only option could be to recreate the catalog database in 8.1.7.1.0 and then DO THE FULL IMPORT. My questions would be: [1] Do I need to do the FULL IMPORT of the catalog database? and then issue the "upgrade catalog" command twice to u

SV: Two (probably simple) questions, function based index and tab

2001-08-17 Thread Jonas A Wetterberg
Forgott to mension Oracle verson, 8.1.7.1.3 on a Windows 2000 advanced server /Jonas -Ursprungligt meddelande- Från: Cale, Rick T (Richard) [mailto:[EMAIL PROTECTED]] Skickat: den 17 augusti 2001 12:08 Till: [EMAIL PROTECTED]; [EMAIL PROTECTED] Ämne: RE: Two (probably simple) questions

RE: Two (probably simple) questions, function based index and table p

2001-08-17 Thread Cale, Rick T (Richard)
What version of Oracle are you using? Function based indexes only work in EE. Rick -Original Message- Sent: Friday, August 17, 2001 6:46 AM To: Multiple recipients of list ORACLE-L p Hello folks! I need to create a function based index, but when I do this, Oracle gives me the message

Two (probably simple) questions, function based index and table p

2001-08-17 Thread Jonas A Wetterberg
Hello folks! I need to create a function based index, but when I do this, Oracle gives me the message ORA-00439, function not installed, so I have tried and tried to figure out how to install this function, but I have failed, therefore this e-mail. I have looked in ORACLE_HOME/rdbms/admin and rea

RE: Rollback after truncate?? + 2 more questions :-)

2001-08-16 Thread Csillag Zsolt
Tom, Thank you for your answer - it has solved my problem. At 05:11 2001.08.16. -0800, you wrote: >Zsolt, > >The correct call for the function if the function exists within the package >would be: > > Insert into A > ( Select Col1 ,PackageName.MyFunction(Col1) > from B ); > >Tom

RE: Rollback after truncate?? + 2 more questions :-)

2001-08-16 Thread Mercadante, Thomas F
Zsolt, The correct call for the function if the function exists within the package would be: Insert into A ( Select Col1 ,PackageName.MyFunction(Col1) from B ); Tom Mercadante Oracle Certified Professional -Original Message- Sent: Wednesday, August 15, 2001 6:44 PM To:

RE: Rollback after truncate?? + 2 more questions :-)

2001-08-15 Thread Kevin Lange
1. No. 2. I do not think its a function of the number of words. DDL needs the Execute Immediate. 3. Don't Know. Need to see the function. -Original Message- Sent: Wednesday, August 15, 2001 5:08 PM To: Multiple recipients of list ORACLE-L Hi, 1.Can I rollback after doing a truncate

RE: Rollback after truncate?? + 2 more questions :-)

2001-08-15 Thread Page, Bruce
> 1.Can I rollback after doing a truncate table (it seems to me > that I can' t) The truncate command is DDL (like create) and not DML (like delete). All DDL commit work as part of their processing. So if you did some work before issuing a truncate command and then tried to rollback after the

Rollback after truncate?? + 2 more questions :-)

2001-08-15 Thread Csillag Zsolt
Hi, 1.Can I rollback after doing a truncate table (it seems to me that I can' t) e.g. Execute Immediate 'Truncate Table '|| TablaNevTomb(i); Execute Immediate 'Begin '|| 'Insert into '|| TablaNevTomb(i) ||' (Select * From X$_'||TablaNevTomb(i)||');'||

Re: Temporary tablespace questions...

2001-08-10 Thread nlzanen1
ent by: cc: (bcc: Jack van Zanen/nlzanen1/External/MEY/NL) [EMAIL PROTECTED] Subject: Temporary tablespace questions...

Re: Temporary tablespace questions...

2001-08-09 Thread Joe Testa
the high water mark of a datafile, meaning the highest data block ever used you wont be able to shrink it down. drop the temp tablespace and recreate it during a slow time. joe > [EMAIL PROTECTED] wrote: > > Hi all... > > I've searched thru the archives, but didn't find what I was > lo

Temporary tablespace questions...

2001-08-09 Thread Jaouich . Cyril
Title: Temporary tablespace questions... Hi all...     I've searched thru the archives, but didn't find what I was looking for. I have a database with a huge temporary tablespace. It's huge because the there is value for max_extent... now I can fix that, but my problem

RE: Evaluation questions - Precise Tool

2001-08-03 Thread Christopher Spence
You need to detirmine what you are looking for before ANY of those questions can be answered. "Do not criticize someone until you walked a mile in their shoes, that way when you criticize them, you are a mile a way and have their shoes." Christopher R. Spence OCP MCSE MCP A+ RAPTOR

RE: Evaluation questions - Precise Tool

2001-08-01 Thread VIVEK_SHARMA
[EMAIL PROTECTED]] > Sent: Wednesday, August 01, 2001 11:04 PM > To: Multiple recipients of list ORACLE-L > Subject: RE: Evaluation questions > > > > Chaim, > > That could work. Logminer wasn't around when I first had this problem, > and I > haven&#x

RE: Evaluation questions

2001-08-01 Thread Rachel Carmichael
CTED] >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Wed, 01 Aug 2001 12:15:51 -0800 > > > > > > > >"Hillman, Alex" <[EMAIL PROTECTED]> on 08/01/2001 02:16:

RE: Evaluation questions

2001-08-01 Thread Chaim . Katz
velopers. Rachel (today it is hot and humid here, and today the AC in the office doesn't work killing duhvelopers is looking like more and more fun) >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject

RE: Evaluation questions

2001-08-01 Thread JOE TESTA
the AC in the office doesn't work killing duhvelopers is looking like more and more fun)>From: [EMAIL PROTECTED]>Reply-To: [EMAIL PROTECTED]>To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>>Subject: RE: Evaluation questions>Date: Wed, 01 Aug 2001 07:

RE: Evaluation questions

2001-08-01 Thread Hillman, Alex
e fun) >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Wed, 01 Aug 2001 07:51:19 -0800 > > > > > > > > >"Rachel Carmichael" &l

RE: Evaluation questions

2001-08-01 Thread Rachel Carmichael
iple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Wed, 01 Aug 2001 07:51:19 -0800 > > > > > > > > >"Rachel Carmichael" <[EMAIL PROTECTED]> on 07/31/2001 11:48:02 AM > >Please respond to [EM

RE: Evaluation questions

2001-08-01 Thread Rachel Carmichael
Mark, mark, Yep, it ain't a walk in the park... as I said. I've been thinking/working on this for a number of years, haven't found a solution yet. The problem with taking so many snapshots is that I am afraid that they will affect performance. I don't do easy questio

RE: Evaluation questions

2001-08-01 Thread Chaim . Katz
lots of good info directly on the desktop. Rachel >From: "Gary Weber" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Tue, 31 Jul 2001 06:11:36 -0800 > &

RE: Evaluation questions

2001-08-01 Thread Mark Leith
ot; Having said that, Q Diagnostics was indeed bliss... I fixed locks before users complained, was able to model and monitor bad SQL and fix it and had lots of good info directly on the desktop. Rachel >From: "Gary Weber" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] &g

Re: Evaluation questions

2001-07-31 Thread Rachel Carmichael
NOW you tell me 2 jobs later! >From: Scott Shafer <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Re: Evaluation questions >Date: Tue, 31 Jul 2001 12:12:04 -0800 > >Rachel, > >Y

Re: Evaluation questions

2001-07-31 Thread Scott Shafer
;Reply-To: [EMAIL PROTECTED] > >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > >Subject: RE: Evaluation questions > >Date: Tue, 31 Jul 2001 10:47:28 -0800 > > > >Also, please keep in mind that some applications will "select for > >update...&

RE: Evaluation questions

2001-07-31 Thread Rachel Carmichael
CTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Tue, 31 Jul 2001 10:47:28 -0800 > >Also, please keep in mind that some applications will "select for >update..." and lock a

Re: Evaluation questions

2001-07-31 Thread Thater, William
Rachel Carmichael wrote: > > And blamed me. Apparently I should have been able to stop this from > happening (locking and rollback segments filled to capacity of the > tablespace) by magic. I KNEW I should have brought the fairy dust that day. > > Rachel either that, or dusted the fairy.;-)

RE: Evaluation questions

2001-07-31 Thread Ron Rogers
all? Sigh... but it's fun to try to solve on a boring day. Rachel >From: "Mark Leith" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Tue, 31 Jul

RE: Evaluation questions

2001-07-31 Thread Rachel Carmichael
bad SQL and fix it and had lots of good info directly on the desktop. Rachel >From: "Gary Weber" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Date: Tue, 31

RE: Evaluation questions

2001-07-31 Thread Rachel Carmichael
does that affect it all? Sigh... but it's fun to try to solve on a boring day. Rachel >From: "Mark Leith" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: Evaluation questions >Dat

RE: Evaluation questions

2001-07-31 Thread Mark Leith
Rachel, You are right, I have not seen a tool that does this as standard either, though I think there could be a way of doing this with our particular product, that I will look in to - but I have a couple of questions: In a real world situation - what would the timeframe be for a user to update

Re[2]: Evaluation questions

2001-07-31 Thread dgoulet
fixed. >From: "O'Neill, Sean" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Evaluation questions >Date: Tue, 31 Jul 2001 02:25:49 -0800 > >I'm still slogging away at sel

RE: Evaluation questions

2001-07-31 Thread Gary Weber
er2 but not the SQL that is doing the blocking. That's useful in beating duhvelopers about the head in order to get the code fixed. >From: "O'Neill, Sean" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROT

Re: Evaluation questions

2001-07-31 Thread Rachel Carmichael
ead in order to get the code fixed. >From: "O'Neill, Sean" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Evaluation questions >Date: Tue, 31 Jul 2001 02:25:49 -0800 > >I

Evaluation questions

2001-07-31 Thread O'Neill, Sean
I'm still slogging away at selection process of DB monitor tool. I'm now at stage where I'm compiling a list of specific tasks I'd like to take the contenders through and score them on same. E.G. Can package alert if Oracle DB goes down? Can package alert if Control File extends? I'd appreciate

OT - toxic carpet glue fun, etc / (Fwd) RE: [Questions ...-- Volume 2001, Number 200-- Welcome b

2001-07-20 Thread Eric D. Pierce
Rachel & folks, fyi: --- Forwarded message follows --- ... > This is the summer of Win2000 and Developer6i/Oracle8i training & > I went "nomail" for vacation a while ago (and then family sick > leave when my kids, 3 years and 7 years old, got summer > colds/asthma), and didn't go back o

Re[2]:re: [Questions about Oracle World Wide Support] / Re:

2001-07-20 Thread dgoulet
ED]> Date: 7/19/2001 1:55 PM nah, this was a LONG time ago... and we had all sorts of other fun to deal with with the licenses too. but it's a thought >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>

Re:re: [Questions about Oracle World Wide Support] / Re: ORA

2001-07-19 Thread Rachel Carmichael
nah, this was a LONG time ago... and we had all sorts of other fun to deal with with the licenses too. but it's a thought >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Re:re: [Questions

Re:re: [Questions about Oracle World Wide Support] / Re: ORA

2001-07-19 Thread dgoulet
Rachel, You can always do as a local firm around here does, namely byt a server license, enjoy the year of support. And then some years later when you decide to upgrade to the next version, buy that license, in the new version, all over again. Seems rather foolish and costly, but then they

re: [Questions about Oracle World Wide Support] / Re: ORACLE-L Digest -- Volume 2001, Number 200

2001-07-19 Thread Rachel Carmichael
Eric, Where you been Welcome back. > >Be aware that if you do not pay for continuing support, and then you >later (years later) decide you need a suport contract again *for the >platform you started on*, Oracle has been known to retroactively >charge (at a percentage at least 50%?) for the y

re: [Questions about Oracle World Wide Support] / Re: ORACLE-L Digest -- Volume 2001, Number 200

2001-07-19 Thread Eric D. Pierce
Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> > Questions about Oracle World Wide Support"Chuan Zhang" -- > > From: "Chuan Zhang" <[EMAIL PROTECTED]> > Date: Sun, 15 Jul 2001 10:00:30 +1000 > Su

RE: Questions about Oracle World Wide Support

2001-07-19 Thread Koivu, Lisa
Title: RE: Questions about Oracle World Wide Support Chuan, Without a support contract you better hope that you can get yourself out of every single recovery disaster that can possibly happen.  If your data isn't important, then don't purchase a support contract.  If you know

Re: Questions about Oracle World Wide Support

2001-07-19 Thread Jonathan Gennick
Wednesday, July 18, 2001, 9:06:20 PM, Chuan Zhang wrote: CZ> What are the benifits of having a support contract? All joking aside, I wouldn't want to manage a database without having a support contract. With support, you have something to fall back on when you can't solve a problem yourself. With

Questions about Oracle World Wide Support

2001-07-18 Thread Chuan Zhang
Dear DBA gurus,   Could I ask you about the following questions:   What are the benifits of having a support contract?what are the issues withnot having a support contract or what the risks do I have to take without the Support?What is it covering? I mean, Does it cover issues involved in

Fwd: few dba related questions

2001-07-09 Thread Jared Still
Maybe the list can have a crack at these. Jared -- Forwarded Message -- Date: Mon, 9 Jul 2001 18:16:02 +0300 To: 1) Oracle dba admin guide(ch-7) that comes as pdf format under 8.1.6 oracle documentation cd talks about using these parameters for tuning archiving (LOG_ARCHIVE

Re:RE: Book/Website for SQL, PL/SQL ,Oracle questions/proble

2001-07-09 Thread dgoulet
n site, Dharminder. -Original Message- Sent: Monday, July 09, 2001 1:15 PM To: Multiple recipients of list ORACLE-L Hey all, I am looking for some books/web sties containing questions/problems related to SQL, PL/SQL I am looking for this information so that the a newcomer to Oracle can enhan

RE: Book/Website for SQL, PL/SQL ,Oracle questions/problems.

2001-07-09 Thread Norwood Bradly A
www.cramsession.brainbuzz.com/cramsession/oracle should be a useful information site, Dharminder. -Original Message- Sent: Monday, July 09, 2001 1:15 PM To: Multiple recipients of list ORACLE-L Hey all, I am looking for some books/web sties containing questions/problems related to SQL

Book/Website for SQL, PL/SQL ,Oracle questions/problems.

2001-07-09 Thread Kumar, Dharminder
Hey all, I am looking for some books/web sties containing questions/problems related to SQL, PL/SQL I am looking for this information so that the a newcomer to Oracle can enhance his/her skill in oracle by solving these problems/questions. I already know one such book Oracle PL/SQL Programming

Re: SQL*LOADER Questions

2001-07-09 Thread Jonathan Gennick
Monday, July 09, 2001, 11:30:20 AM, Ron Smith wrote: SRL> We are trying to replace a VB program with SQL*Loader. Two Questions. The SRL> input file contains record types. A type 1 header record contains data that SRL> must be retained and combined with a type 3 record. Also, dependi

RE: SQL*LOADER Questions

2001-07-09 Thread Mercadante, Thomas F
ts of list ORACLE-L We are trying to replace a VB program with SQL*Loader. Two Questions. The input file contains record types. A type 1 header record contains data that must be retained and combined with a type 3 record. Also, depending on the record type the data is loaded into different t

SQL*LOADER Questions

2001-07-09 Thread Smith, Ron L.
We are trying to replace a VB program with SQL*Loader. Two Questions. The input file contains record types. A type 1 header record contains data that must be retained and combined with a type 3 record. Also, depending on the record type the data is loaded into different tables. Is all this

SAP Interview Questions

2001-06-29 Thread Connie Milliken
We are looking to hire an SAP Systems Analyst. Can anyone suggest some good questions/answers specific to SAP? I have seen lists of Oracle interview questions so I was wondering if anyone has seen any on SAP? Or, if you just know some good questions/answers, please send them to me. Thanks

Re: Questions for Oracle creation & Backup

2001-06-25 Thread Ravinder_Bahadur
TED]> Sent by: cc: [EMAIL PROTECTED]Subject: Questions for Oracle creation & Backup

Questions for Oracle creation & Backup

2001-06-24 Thread Meng Fangtao
Dear Sir/Madam, We will migrate Mysql to Oracle soon. Now I have some questions. 1. We have 5 databases in one instance in Mysql. Do we need to create 5 databases in Oracle, or only one? We have to start 5 instances and assign different sizes of RAM to them If we create 5 databases. 2. How

Re: Intermedia Questions, Any Gurus on This Subject?

2001-06-19 Thread Mike J Kurth
You need to create preferences to specify storage parameters like: begin ctx_ddl.create_preference('storage_small','BASIC_STORAGE'); ctx_ddl.set_attribute('storage_small','I_TABLE_CLAUSE','tablespace LOBADM_01_SMALL_DATA'); ctx_ddl.set_attribute('storage_small','K_TABLE_CLAUSE','tablespace LOB

RE: Intermedia Questions, Any Gurus on This Subject?

2001-06-19 Thread Koivu, Lisa
Title: RE: Intermedia Questions, Any Gurus on This Subject? Hi Vicky, You need to create a preference to define the storage clause with CTX_DDL.  I did this at a former employer and I don't have the scripts handy, sorry to say.  The documentation does go over this in detail.  Yo

RE: Intermedia Questions, Any Gurus on This Subject?

2001-06-19 Thread Hatzistavrou Giannis
Intermedia Questions, Any Gurus on This Subject? > > Help anybody, version 8.1.6.3 on UNIX > > 1. Storage clause of an intermedia index build. How > to specify the buffer pool to KEEP or CACHE the index? > > 2. How to specify the tablespace for such a DOMAIN > index.

Intermedia Questions, Any Gurus on This Subject?

2001-06-19 Thread Oracle DBA
Help anybody, version 8.1.6.3 on UNIX 1. Storage clause of an intermedia index build. How to specify the buffer pool to KEEP or CACHE the index? 2. How to specify the tablespace for such a DOMAIN index. When put in tablespace clause, says its invalid option for domain index. Thanx = V

Re: EXPORT questions

2001-06-19 Thread Ravinder_Bahadur
AIL PROTECTED]> Sent by: cc: [EMAIL PROTECTED]Subject: EXPORT questions

EXPORT questions

2001-06-18 Thread Seema Singh
hi What is diffrent between the full export taken by sys user and system user? Why people prefer the system user to take full export? If any one can take full export with sys user in FGAC case then how to import incase of recovery means from sys user itself likefollowing command. imp userid=sys/c

RE: OCP Model Questions

2001-06-05 Thread Peter McLarty
om >my home. I think this is something to do with Proxy settings. > >Please check if you can change proxy settings/ try alternate solutions. > >-- Krishna > > >>From: "Viraj Luthra" <[EMAIL PROTECTED]> >>Reply-To: [EMAIL PROTECTED] >>To: Multi

Re: OCP Model Questions

2001-06-04 Thread C.S.Venkata Subramanian
y alternate solutions. > >-- Krishna > > >>From: "Viraj Luthra" <[EMAIL PROTECTED]> >>Reply-To: [EMAIL PROTECTED] >>To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >>Subject: Re: OCP Model Questions >>Date: Mon, 04 Jun 2001 00:1

Re: OCP Model Questions

2001-06-04 Thread Eric D. Pierce
technicians - http://www.BSALERT.org) ... > Please check if you can change proxy settings/ try alternate solutions. ... > > >I have compiled some model questions for OCP DBA Test at > > >http://www.oraref.com (mirrored at > > >http://smart_and_handsome.tripod.com/o

Re: OCP Model Questions

2001-06-04 Thread Donald Bricker
j Luthra" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Re: OCP Model Questions >Date: Mon, 04 Jun 2001 00:10:21 -0800 > > >the url does not work > > >On Sun, 03 Jun 2001 22:10:45 >

Re: OCP Model Questions

2001-06-04 Thread Krishna Kakatur
lease check if you can change proxy settings/ try alternate solutions. -- Krishna >From: "Viraj Luthra" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: Re: OCP Model Questions >Date: Mo

Re: OCP Model Questions

2001-06-04 Thread Viraj Luthra
the url does not work On Sun, 03 Jun 2001 22:10:45 Krishna Kakatur wrote: >Hi All, > >I have compiled some model questions for OCP DBA Test at >http://www.oraref.com (mirrored at >http://smart_and_handsome.tripod.com/oracle.html). > >If you have more, I will be hap

OCP Model Questions

2001-06-03 Thread Krishna Kakatur
Hi All, I have compiled some model questions for OCP DBA Test at http://www.oraref.com (mirrored at http://smart_and_handsome.tripod.com/oracle.html). If you have more, I will be happy to add them to the Web Page. -- Krishna

Re: 2 RMAN questions

2001-04-24 Thread Ruth Gramolini
I'll try to answer these; You can uncatalog any archivelogs you have removed without using rman. This will accomplish what you wish. But for the future, try to an rman archivelog backup with the delete option. This put the archivelogs in a backupset and then deletes them. Rman know right where

2 RMAN questions

2001-04-24 Thread Glasrot, Nechama
hi listers ... 1/ i had to delete archived logs before i could back them up thru rman ...my ? is how do i notify rman that these logs no longer exist ... do i crosscheck (mark as expired) all previous logs and then issue a complete resynch ... or do i just resynch ... or ? 2/ i am changing the ar

MERANT PVCS ERP Change Manager for Oracle Questions

2001-04-23 Thread Lisa Yates
My boss has to prepare a report for our board about change management and asked me to look at some documentation of PVCS ERP change manager. Have any of you ever used this product and what are your opinions of it. TIA. Lisa * Lisa Yates[

RE: Oracle on Linux questions

2001-04-03 Thread Jefferson, Dean
I have had good luck with Red Hat Linux 6.2 and Oracle 8.1.6.1 for Linux. You don't need to do any upgrades to Linux before installing Oracle, you don't have to download your own Java virtual machine, and you don't have to install any Oracle patches to make it work (as I had to with Oracle 8.1.5).

RE: Re[2]: Couple of questions

2001-03-22 Thread Tim Sawmiller
I'd even give latitude to someone who might not know everything, but who has a basic understanding and will logically and carefully research a problem as opposed to hacking away at it until he/she figures it out. >>> [EMAIL PROTECTED] 03/22/01 12:13PM >>> Gosh I keep mine hush-hush. It is at

RE: Re[2]: Couple of questions

2001-03-22 Thread Koivu, Lisa
Title: RE: Re[2]: Couple of questions Gosh I keep mine hush-hush.  It is at the very bottom of my resume...  Yes I have it but so what?  I didn't claim to know a whole lot about backup and recovery until a couple of months ago when I actually had resources and time to PRACTICE.  Yes,

Re[2]: Couple of questions

2001-03-22 Thread dgoulet
Someone coming into where I work with only their OCP as their claim to fame will most likely not get an interview whereas someone with a number of years Oracle experience will. We were pretty badly burned in the recent past by someone who had their OCP as their sole claim to fame. This particula

RE: Couple of questions

2001-03-22 Thread Kevin Kostyszyn
True, but it probably looks good on a resume! -Original Message- Dandekar Sent: Thursday, March 22, 2001 11:02 AM To: Multiple recipients of list ORACLE-L > Also for those who have Oracle certification how much database experience > (Oracle in particular) did you have before you obtaine

Re: Couple of questions

2001-03-22 Thread Rahul Dandekar
> Also for those who have Oracle certification how much database experience > (Oracle in particular) did you have before you obtained certification? > What do you recommend for experience before attempting certification? OCP and Good Oracle DBA are not one of the same things. There might be peop

Re: Couple of questions

2001-03-22 Thread Thater, William
On Thu, 22 Mar 2001,Donald Bricker scribbled on the wall in glitter crayon: ->Is anyone running Oracle 8.1.6 on Solaris 8? Any problems? Anything to be aware of? yup, no problems so far. however this is not a large database nor mission critical. YMMV.;-) -- Bill Thater Certifieabl

Couple of questions

2001-03-22 Thread Donald Bricker
Is anyone running Oracle 8.1.6 on Solaris 8? Any problems? Anything to be aware of? Also for those who have Oracle certification how much database experience (Oracle in particular) did you have before you obtained certification?What do you recommend for experience before attempting certificatio

dynamic sql questions

2001-03-21 Thread lwm
Actually, two questions here: 1. I have a dynamicly-built query that will be executed using dynamic sql: select Z, (select y from tableA t1 where t1.id=t2.id) X from tableA t2; To get the value from the query, I use: dbms_sql.column_value( theCursor, 1,columnValue

MTS questions

2001-03-01 Thread Steff Gonos
For MTS experienced users; I am installing 8.1.7 on Digital Unix (compaq). Received the following error when I tried to create an instance. ORA-600 ( 16305). Metalink says that its a failure from the init.ora parameters but nothing more. Appreciate any help. Steff Gonos = **

RE: OID questions

2001-03-01 Thread Chuck Hamilton
Thanks for all the information Greg. One more question. What's an oracle names proxy? I thought names was going away entirely in 9i. Chuck Hamilton   "Nelson, Greg" <[EMAIL PROTECTED]> wrote: Failover information in Oracle Internet Directory (OID) is entered like Net8configuration information. Yo

RE: OID questions

2001-02-28 Thread Nelson, Greg
Failover information in Oracle Internet Directory (OID) is entered like Net8 configuration information. You can import the exact information that is in your TNSNAMES.ORA into OID, so if you can code failovers in TNSNAMES.ORA you can put it in OID as well. So you would handle failovers using OID

OID questions

2001-02-28 Thread Chuck Hamilton
I'm considering the switch from Oracle Names to Oracle Internet Directory. One feature I liked about names was the dynamic discovery. Does dynamic discovery also work with OID? For example if one of my databases fails over to another machine in it's cluster, the names server is automatically update

Resend : Datawarehouse datamodeling : 3 questions

2001-02-28 Thread paquette stephane
I had no feedback on this one. There must be some datawarehousers on this list. Hi, I'm currently testing the Oracle 8i new datawarehousing functionnalities. Are you using materialised view for aggregate dimension ? The second question is what do you do with yes/no flags. They can be put in

Re: questions: security on the unix

2001-02-27 Thread manoharp
] > > Sent: Friday, February 23, 2001 1:32 PM > > To: Multiple recipients of list ORACLE-L > > Subject: Re: questions: security on the unix > > > > > > DBAs > > > > Whis is right security for oracle datafile. 640 or 777 or others. > > > > I found

questions: Oracle files on AIX

2001-02-27 Thread manoharp
All the datafiles of oracle shall have 640. That is -rw-r-. Owner of the files will be oracle and the group shall be dba. The users access and updation of all the oracle files are controlled by oracle only as per the profile of the individual oracle user. Manoharan [EMAIL PROTECTED] --

Datawarehouse datamodeling : 3 questions

2001-02-27 Thread paquette stephane
Hi, I'm currently testing the Oracle 8i new datawarehousing functionnalities. Are you using materialised view for aggregate dimension ? The second question is what do you do with yes/no flags. They can be put in the fact table or they can be put in a profile dimension. Is there another way ? Th

Re: questions: security on the u

2001-02-26 Thread GANTI . SIVA
Oh Mitchell, You have to set s-bit permission should be 6755 --something like that.When user updates a record he is ultimately writing to datafiles.At that time he should assume as file-owner.That means only thru sqlplus or thru some other application only he can write to the file,Neither he ca

Re: questions: security on the unix

2001-02-23 Thread Pat Hildebrand
> > Thanks Brian. > > It is very strang. I have two database on 2 nodes. > > db1, one instance all 640 for datafile. > > db2 2 databases. that I have change the test database for 640. the error > message said the datafile premittion error. > owner is oracle:dba > > Mitchell > > Are you s

Re: questions: security on the unix

2001-02-23 Thread Mitchell
on College > [EMAIL PROTECTED] > > > > > > -Original Message- > > From: Mitchell [mailto:[EMAIL PROTECTED]] > > Sent: Friday, February 23, 2001 1:32 PM > > To: Multiple recipients of list ORACLE-L > > Subject: Re: questions: secu

<    2   3   4   5   6   7   8   >