Re: RMAN Incremental

2003-10-24 Thread Tim Gorman
Title: Re: RMAN Incremental



Michael,

Another good treatment of the use of partitioning in DW to reduce backups is a paper by Jeff Maresh posted online at “http://www.EvDBT.com/papers.htm”, entitled “Managing the Data Lifecycle”.

-Tim

on 10/24/03 4:34 PM, Michael Kline at [EMAIL PROTECTED] wrote:

I'm working at a Data Warehouse and they are looking for backup possibilities... 
 
This is almost a TB, a baby, and it may be that RMAN with incremental could be a good solution.
 
If say for instance there is a single tablespace of some 100 gig and they add 200,000,000 records to one of the tables and we do an incremental backup. Is the whole tablespace slated for backup?
 
Also if this tablespace was lost, and we recover.. What happens during that process? Does RMAN basically have to filter through two complete copies of that tablespace or just once and then get changed blocks?
 
What solutions have some doing this found to be "best practice"?
 
Thanks.

Michael Kline, Principal Consultant
Business To Business Solutions, LLC
Richmond, VA
804-744-1545








Re: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread Arup Nanda
> i thought they might load faster because of fast refresh.

If you can do fast refresh, then MVs may be better. However, here are a few
considerations before you do so:

1. Fast refresh requires creation of mv logs on the master tables, which are
populated by triggers. This will affect performance on your source db, which
might not be acceptable.
2. Fast refresh is transactional, and it may be slower. If the number of
changes are large between two refreshes, it might be actually faster to do a
full refresh.

> not sure if we can do that across a db link.

Of course you can across db links. Fast refreshable MVs are also created in
replication environments; how do you suppose they work between two different
databases?

HTH.

Arup

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 11:49 PM
refresh - for


> no we dont need query rewrite. we load data every night across a database
> link. we drop and recreate all the tables from scratch. I thought about
> using materialized views. i thought they might load faster because of fast
> refresh. not sure if we can do that across a db link.
> - Original Message -
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Friday, October 24, 2003 10:14 PM
> refresh - for
>
>
> > No, you didn't read it completely. Create table and create MV do the
same
> > thing - produce a copy of the data on a different location (or a
different
> > segment) that can be queried independently. However, I proposed a
> different
> > way of doing the MV creating and refreshing, not using the
> > dbms_mview.refresh procedure as documented, but by using prebuilt table
> and
> > using other faster methods such as CTAS and Direct Path load to do a
> > complete refresh. It offers severa advantages such as faster execution,
> much
> > less outage window and low resource utilization. As an added bonus, you
> > don't have to drop and recreate the read only MV when you add/alter a
> column
> > to the master table.
> >
> > In your case, you might want to consider converting the tables to MV if
> MVs
> > are used in such a way. One example is if you see some benefit from
Query
> > Rewrite, you may want to create the MVs on the tables using the ON
> PREBUILT
> > TABLE clause for Oracle to use QR.
> >
> > HTH.
> >
> > Arup Nanda
> > www.proligence.com
> >
> > - Original Message -
> > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > Sent: Friday, October 24, 2003 9:24 PM
> > refresh - for
> >
> >
> > > did i read that correctly that create table as is superior to a
> > materialized
> > > view for nightly loads? We drop all the tables in some of our schemas
> and
> > > rebuild them with create table as statements. I was going to try out
> > > materialized views to see if they were faster.
> > >
> > > guess they are not?
> > > - Original Message -
> > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > > Sent: Friday, October 24, 2003 12:34 PM
> > > refresh - for
> > >
> > >
> > > > Hi Arup,
> > > >
> > > > This is a very good method.  I would like to use it to modify some
of
> my
> > > > data loading procedures.  Here are my questions:
> > > > 1. Do I need to create the table on the step 1 every time when I
> refresh
> > > the
> > > > data If I refresh data once per day?
> > > > 2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying
> the
> > > > method on Oracle 8i, I got missing keyword error on "PREBUILT".
> > > >
> > > > Dave
> > > >
> > > > >
> > > > >Siddharth,
> > > > >
> > > > >I will offer a slightly out-of-the-box solution. Please read it
> through
> > > > >till the end to determine its applicability in your case.
> > > > >
> > > > >It seems yours refresh interval is once a day and you don't mind
> stale
> > > > >data for a max of 24 hours. You also refresh is complete, not
> > > > >incremental. So, I would suggest the follwoing approach.
> > > > >
> > > > >(1) Create a table first
> > > > >CREATE TABLE CT_PRODUCTID_VW
> > > > >TABLESPACE 
> > > > >NOLOGGING
> > > > >AS
> > > > >SELECT .
> > > > >
> > > > >(2) When you are ready to "refresh", drop the MV
> > > > >DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
> > > > >
> > > > >(3) Create the MV with the PREBUILT TABLE option.
> > > > >CREATE
> > > > >MATERIALIZED VIEW CT_PRODUCTID_VW
> > > > >BUILD IMMEDIATE
> > > > >REFRESH START WITH SYSDATE
> > > > >NEXT (SYSDATE + 1)
> > > > >ON PREBUILT TABLE
> > > > >AS
> > > > >SELECT
> > > > > msi.segment1productid,
> > > > >...
> > > > >
> > > > >Your MV is not accessible between STEP 2 and STEP3, which is really
a
> > > > >dictionary update and takes about a second or so. So the "outage"
is
> > > > >really 1 second, not 1/2 hr.
> > > > >
> > > > >A few explanations are in order here.
> > > > >
> > > > >(1) Creating an MV on a Prebuilt Table does not consume more space.
> The
> > > > >segment that used to be a table simp

Re: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread Ryan
no we dont need query rewrite. we load data every night across a database
link. we drop and recreate all the tables from scratch. I thought about
using materialized views. i thought they might load faster because of fast
refresh. not sure if we can do that across a db link.
- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 10:14 PM
refresh - for


> No, you didn't read it completely. Create table and create MV do the same
> thing - produce a copy of the data on a different location (or a different
> segment) that can be queried independently. However, I proposed a
different
> way of doing the MV creating and refreshing, not using the
> dbms_mview.refresh procedure as documented, but by using prebuilt table
and
> using other faster methods such as CTAS and Direct Path load to do a
> complete refresh. It offers severa advantages such as faster execution,
much
> less outage window and low resource utilization. As an added bonus, you
> don't have to drop and recreate the read only MV when you add/alter a
column
> to the master table.
>
> In your case, you might want to consider converting the tables to MV if
MVs
> are used in such a way. One example is if you see some benefit from Query
> Rewrite, you may want to create the MVs on the tables using the ON
PREBUILT
> TABLE clause for Oracle to use QR.
>
> HTH.
>
> Arup Nanda
> www.proligence.com
>
> - Original Message -
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Friday, October 24, 2003 9:24 PM
> refresh - for
>
>
> > did i read that correctly that create table as is superior to a
> materialized
> > view for nightly loads? We drop all the tables in some of our schemas
and
> > rebuild them with create table as statements. I was going to try out
> > materialized views to see if they were faster.
> >
> > guess they are not?
> > - Original Message -
> > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > Sent: Friday, October 24, 2003 12:34 PM
> > refresh - for
> >
> >
> > > Hi Arup,
> > >
> > > This is a very good method.  I would like to use it to modify some of
my
> > > data loading procedures.  Here are my questions:
> > > 1. Do I need to create the table on the step 1 every time when I
refresh
> > the
> > > data If I refresh data once per day?
> > > 2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying
the
> > > method on Oracle 8i, I got missing keyword error on "PREBUILT".
> > >
> > > Dave
> > >
> > > >
> > > >Siddharth,
> > > >
> > > >I will offer a slightly out-of-the-box solution. Please read it
through
> > > >till the end to determine its applicability in your case.
> > > >
> > > >It seems yours refresh interval is once a day and you don't mind
stale
> > > >data for a max of 24 hours. You also refresh is complete, not
> > > >incremental. So, I would suggest the follwoing approach.
> > > >
> > > >(1) Create a table first
> > > >CREATE TABLE CT_PRODUCTID_VW
> > > >TABLESPACE 
> > > >NOLOGGING
> > > >AS
> > > >SELECT .
> > > >
> > > >(2) When you are ready to "refresh", drop the MV
> > > >DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
> > > >
> > > >(3) Create the MV with the PREBUILT TABLE option.
> > > >CREATE
> > > >MATERIALIZED VIEW CT_PRODUCTID_VW
> > > >BUILD IMMEDIATE
> > > >REFRESH START WITH SYSDATE
> > > >NEXT (SYSDATE + 1)
> > > >ON PREBUILT TABLE
> > > >AS
> > > >SELECT
> > > > msi.segment1productid,
> > > >...
> > > >
> > > >Your MV is not accessible between STEP 2 and STEP3, which is really a
> > > >dictionary update and takes about a second or so. So the "outage" is
> > > >really 1 second, not 1/2 hr.
> > > >
> > > >A few explanations are in order here.
> > > >
> > > >(1) Creating an MV on a Prebuilt Table does not consume more space.
The
> > > >segment that used to be a table simply becomes an MV.
> > > >(2) When you drop the MV, the MV is gone, but the table remains
> instact.
> > > >(3) The table can be create by any means - export/import, SQL*Loader,
> > > >INSERT APPEND, etc.
> > > >(4) IT places less strain on the system comapred to the MV refresh
> > > >option, simply because the MV refresh truncates the segment and then
> > > >builds it.
> > > >
> > > >I presented a paper to the same effect at IOUG Live 2003. You can
> > > >download a modified version of the same from my website
> > > >www.proligence.com/downlaods.html, titled "Painless Master Table
Alter"
> > > >from the Presentations Section.
> > > >
> > > >HTH.
> > > >
> > > >Arup Nanda
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >- Original Message -
> > > >To: Multiple recipients of list ORACLE-L
> > > >Sent: Tuesday, October 21, 2003 3:59 AM
> > > >refresh
> > > >
> > > >
> > > >Hi Gurus,
> > > >
> > > >I have a materialized view, which is based on Oracle Apps tables and
on
> > > >remote database. The view refresh takes around ½ hour, during this
time
> > > >period I cannot see any records in the materi

Re: re Rebuilding Indexes in Oracle Apps -- was RE: RE:

2003-10-24 Thread Richard Foote
Hi Hemant,

How I dislike being immortalised ;)

The note basically quoted me word for word on my feedback and that's fine,
it's certainly an improvement on what was previously suggested (and yes,
Oracle asked for my permission).

A point I would add though is that the whole subject of how Oracle indexes
function and the various cases when one should or should not rebuild indexes
is not black and white and is not easily covered in a couple of paragraphs.
There are always exceptions and oddities, the key is determining when these
scenarios arrive and taking the appropriate action. Many books/articles
emphasise the need to rebuild generally and often, I'm suggesting the
emphasis should be far more considered and "practical".

If anyone reading the note now questions the rebuild generally and often
approach, then my comments serve their intentions.

Cheers

Richard

- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 1:19 AM


>
> Yes.  However, every time he has replied to me, he has been confident that
he
> IS right.
>
> Mind you, Richard, you are "immortalised" now !
> Hemant
>
> At 05:04 PM 22-10-03 -0800, you wrote:
> >So now the blame rests solely on Richard for any material in the note
that's
> >wrong.  :)
> >
> >Check the latest update:
>
>http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_data
b
> >ase_id=NOT&p_id=182699.1
> >
> >Pete
> >"Controlling developers is like herding cats."
> >Kevin Loney, Oracle DBA Handbook
> >"Oh no, it's not.  It's much harder than that!"
> >Bruce Pihlamae, long-term Oracle DBA
> >
> >
> >
> >-Original Message-
> >Millsap
> >Sent: Wednesday, October 22, 2003 2:35 AM
> >To: Multiple recipients of list ORACLE-L
> >
> >
> >Oops, I didn't see that part. Thanks for the catch, Hemant.
> >
> >
> >Cary Millsap
> >Hotsos Enterprises, Ltd.
> >http://www.hotsos.com
> >
> >Upcoming events:
> >- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
> >- SQL Optimization 101: 12/8-12 Dallas
> >- Hotsos Symposium 2004: March 7-10 Dallas
> >- Visit www.hotsos.com for schedule details...
> >
> >
> >-Original Message-
> >Hemant K Chitale
> >Sent: Tuesday, October 21, 2003 10:15 AM
> >To: Multiple recipients of list ORACLE-L
> >
> >
> >Unfortunately, the lines
> >"Unoccupied space on indexes occurs when a key value changes, and
> >the
> >index
> >  row is deleted from one place (Leaf Block) and inserted into
another.
> >  Deleted Leaf Rows are not reused.  Therefore, indexes whose columns
are
> >  subject to intensive value change should be rebuilt periodically,
since
> >  they become naturally fragmentated. "
> >are still visible in Note 182699.1
> >
> >Hemant
> >
> >At 08:29 AM 20-10-03 -0800, you wrote:
> > >Fyi, Oracle updated note 182699.1 last Friday. The inaccurate
> >statements
> > >about "index fragmentation" have been removed.
> > >
> > >
> > >Cary Millsap
> > >Hotsos Enterprises, Ltd.
> > >http://www.hotsos.com
> > >
> > >Upcoming events:
> > >- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
> > >- SQL Optimization 101: 12/8-12 Dallas
> > >- Hotsos Symposium 2004: March 7-10 Dallas
> > >- Visit www.hotsos.com for schedule details...
> > >
> > >
> > >-Original Message-
> > >Richard Foote
> > >Sent: Friday, October 17, 2003 6:29 AM
> > >To: Multiple recipients of list ORACLE-L
> > >Separate
> > >
> > >Hi Hemant,
> > >
> > >One word perfectly describes the Metalink article you highlighted:
> > >
> > >Crap ;)
> > >
> > >A nice example of  how Oracle Corp is the greatest myth generator of
> > >them all !! It's all rather sad and embarressing isn't.
> > >
> > >Thanks for the headsup. Anyone in a position to get the note removed ?
> > >
> > >Cheers
> > >
> > >Richard
> > >
> > > >Quoting Metalink Note 182699.1 bde_rebuild.sql Validates and Rebuilds
> > >Fragmentated Indexes (8.0->9.0)
> > > >
> > > >Index fragmentation occurs when a key value changes, and the index
> >row
> > >is
> > > >deleted from one place (Leaf Block) and inserted into another.
> > > >
> > > > Deleted Leaf Rows are not reused. Therefore indexes whose columns
> >are
> > >  >subject to value change must be rebuilt periodically since they
> >become
> > >naturally fragmentated.
> > > >
> > >  >An index is considered to be 'fragmentated' when more than 20% of
> >its
> > >Leaf
> > >Rows space is
> > > >empty because of the implicit deletes caused by indexed columns value
> > >changes.
> > > >
> > >  >Fragmentated indexes degrade the performance of index range scan
> > >operations.
> > >
> > >
> > >--
> > >Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > >--
> > >Author: Richard Foote
> > >   INET: [EMAIL PROTECTED]
> > >
> > >Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > >San Diego, California-- Mailing list and web hosting services
> > >-
> > >To REMOVE yourself 

Re: VPN to database?

2003-10-24 Thread Arup Nanda
Paul,

We use Advanced Security. the product is pricey and difficult to setup; but
once in place it's in solid footing.

Advanced security does not replace VPN per se; it's purpose is slightly
different and broader in scope. If you take VPN away, how do you suppose you
will connect to the DB server, directly? Hardly. So, VPN _may_ be required
regardless.

Some of the uses of AS are (not exhaustive)

1. Encryption and Checksumming of Net8 connection between the db server and
the app servers (and any other users connected to the db server directly).
This is the bare minimum security manadated by HIPAA and unfortunately
Oracle does not provide a solution as a part of the base product. You may
not need it, though; since using intelligent subnets and using firewalls
around the db servers can limit threats to an acceptable degree.

2. Single signon. We use it in our app servers (running IIS) where the
authentication is done using certificates. Again, this is necessary due to
the refusal of the Development group to introduce database userids and
eliminate the application authentication.

The second part can be addressed in a different way. Using an application
user security model where the users supply their userid and password to the
database for authentication will eliminate the need to have a Windows user
to be authenticated. A simple mechanism will be to authenticate the user
agaist the database as the very first step. If authentication fails, the app
will not proceed further. This will eliminate the authentication of the user
by Windows. This model has been in use on a different app here and works
great; but on the other app, the manager insists on one authentication on
Windows and then another on the database, hence single signon.

HTH.

Arup Nanda
www.proligence.com

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 10:09 PM


> Thanks, everyone, for your helpful responses.
>
> A talk with our Oracle sales droid has pointed me in the direction of
> Oracle Advanced Security for authentication, encryption, and integrity.
>  Anyone have experience using this?  We are considering using Entrust
> SSL authentication as we already use Entrust to authenticate users of
> our app.  Would Advanced Security replace a VPN, or coexist with it?
>
>
>
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Arup Nanda
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread Arup Nanda
No, you didn't read it completely. Create table and create MV do the same
thing - produce a copy of the data on a different location (or a different
segment) that can be queried independently. However, I proposed a different
way of doing the MV creating and refreshing, not using the
dbms_mview.refresh procedure as documented, but by using prebuilt table and
using other faster methods such as CTAS and Direct Path load to do a
complete refresh. It offers severa advantages such as faster execution, much
less outage window and low resource utilization. As an added bonus, you
don't have to drop and recreate the read only MV when you add/alter a column
to the master table.

In your case, you might want to consider converting the tables to MV if MVs
are used in such a way. One example is if you see some benefit from Query
Rewrite, you may want to create the MVs on the tables using the ON PREBUILT
TABLE clause for Oracle to use QR.

HTH.

Arup Nanda
www.proligence.com

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 9:24 PM
refresh - for


> did i read that correctly that create table as is superior to a
materialized
> view for nightly loads? We drop all the tables in some of our schemas and
> rebuild them with create table as statements. I was going to try out
> materialized views to see if they were faster.
>
> guess they are not?
> - Original Message -
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Friday, October 24, 2003 12:34 PM
> refresh - for
>
>
> > Hi Arup,
> >
> > This is a very good method.  I would like to use it to modify some of my
> > data loading procedures.  Here are my questions:
> > 1. Do I need to create the table on the step 1 every time when I refresh
> the
> > data If I refresh data once per day?
> > 2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying the
> > method on Oracle 8i, I got missing keyword error on "PREBUILT".
> >
> > Dave
> >
> > >
> > >Siddharth,
> > >
> > >I will offer a slightly out-of-the-box solution. Please read it through
> > >till the end to determine its applicability in your case.
> > >
> > >It seems yours refresh interval is once a day and you don't mind stale
> > >data for a max of 24 hours. You also refresh is complete, not
> > >incremental. So, I would suggest the follwoing approach.
> > >
> > >(1) Create a table first
> > >CREATE TABLE CT_PRODUCTID_VW
> > >TABLESPACE 
> > >NOLOGGING
> > >AS
> > >SELECT .
> > >
> > >(2) When you are ready to "refresh", drop the MV
> > >DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
> > >
> > >(3) Create the MV with the PREBUILT TABLE option.
> > >CREATE
> > >MATERIALIZED VIEW CT_PRODUCTID_VW
> > >BUILD IMMEDIATE
> > >REFRESH START WITH SYSDATE
> > >NEXT (SYSDATE + 1)
> > >ON PREBUILT TABLE
> > >AS
> > >SELECT
> > > msi.segment1productid,
> > >...
> > >
> > >Your MV is not accessible between STEP 2 and STEP3, which is really a
> > >dictionary update and takes about a second or so. So the "outage" is
> > >really 1 second, not 1/2 hr.
> > >
> > >A few explanations are in order here.
> > >
> > >(1) Creating an MV on a Prebuilt Table does not consume more space. The
> > >segment that used to be a table simply becomes an MV.
> > >(2) When you drop the MV, the MV is gone, but the table remains
instact.
> > >(3) The table can be create by any means - export/import, SQL*Loader,
> > >INSERT APPEND, etc.
> > >(4) IT places less strain on the system comapred to the MV refresh
> > >option, simply because the MV refresh truncates the segment and then
> > >builds it.
> > >
> > >I presented a paper to the same effect at IOUG Live 2003. You can
> > >download a modified version of the same from my website
> > >www.proligence.com/downlaods.html, titled "Painless Master Table Alter"
> > >from the Presentations Section.
> > >
> > >HTH.
> > >
> > >Arup Nanda
> > >
> > >
> > >
> > >
> > >
> > >- Original Message -
> > >To: Multiple recipients of list ORACLE-L
> > >Sent: Tuesday, October 21, 2003 3:59 AM
> > >refresh
> > >
> > >
> > >Hi Gurus,
> > >
> > >I have a materialized view, which is based on Oracle Apps tables and on
> > >remote database. The view refresh takes around ½ hour, during this time
> > >period I cannot see any records in the materialized view and therefore
> > >my application faces errors.
> > >The following is the view definition
> > >
> > >CREATE
> > >MATERIALIZED VIEW CT_PRODUCTID_VW
> > >BUILD IMMEDIATE
> > >REFRESH START WITH SYSDATE
> > >NEXT (SYSDATE + 1)
> > >AS
> > >SELECT
> > > msi.segment1productid,
> > > msi.description description,
> > > msi.inventory_item_id   inventory_item_id,
> > > mc.segment1 product_family,
> > > mc.segment2 product_type
> > >FROM [EMAIL PROTECTED]  mcs,
> > >  [EMAIL PROTECTED] mc,
> > >  [EMAIL PROTECTED]mic,
> > >  [EMAIL PROTECTED]  

Re: RMAN Incremental

2003-10-24 Thread Arup Nanda



Michael,
 
I hope you have the tables partitioned on some date 
column. You can make some of the older partitions read only and back them up 
only once.
 
Another solution is to exchange the partitions with 
a table to convert your old partitions to tables, transporting them to a tape 
and keep it on the tape. If the database crashed, you will plug these TSs back 
to the DB and exchange the partitions with the tables created 
earlier.
 
I presented a session at Oracle World this year 
describing a case study of a datawarehouse where I have described the backup and 
recovery approach. You can download it from OTN or from my website (www.proligence.com/downloads.html). 
Be sure to download both the paper and the presentation.
 
HTH.
 
Arup Nanda

  - Original Message - 
  From: 
  Michael 
  Kline 
  To: Multiple recipients of list ORACLE-L 
  
  Sent: Friday, October 24, 2003 7:34 
  PM
  Subject: RMAN Incremental
  
  I'm working at a 
  Data Warehouse and they are looking for backup possibilities... 
  
   
  This is almost a 
  TB, a baby, and it may be that RMAN with incremental could be a good 
  solution.
   
  If say for 
  instance there is a single tablespace of some 100 gig and they add 200,000,000 
  records to one of the tables and we do an incremental backup. Is the whole 
  tablespace slated for backup?
   
  Also if this 
  tablespace was lost, and we recover.. What happens during that process? Does 
  RMAN basically have to filter through two complete copies of that 
  tablespace or just once and then get changed blocks?
   
  What solutions 
  have some doing this found to be "best practice"?
   
  Thanks.
  
  
  Michael Kline, Principal ConsultantBusiness To Business 
  Solutions, LLCRichmond, 
  VA804-744-1545


RE: VPN to database?

2003-10-24 Thread Paul Baumgartel
Thanks, everyone, for your helpful responses.

A talk with our Oracle sales droid has pointed me in the direction of
Oracle Advanced Security for authentication, encryption, and integrity.
 Anyone have experience using this?  We are considering using Entrust
SSL authentication as we already use Entrust to authenticate users of
our app.  Would Advanced Security replace a VPN, or coexist with it?



=
Paul Baumgartel
Transcentive, Inc.
www.transcentive.com

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Paul Baumgartel
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: index full scan over an index fast full scan in an analytic function?

2003-10-24 Thread Vladimir Begun
Vladimir Begun wrote:
Tanel Poder wrote:
FFS will scan from index header block (note that index segment header and
index root block are different ones) up to segment high water mark using
multiblock reads and ignoring contents of root, branch, bitmap, extent 
map,
freelist group blocks. Rows are returned as they've read from blocks, 
thus
no order can be guaranteed.
"Rows are returned as they've read from blocks, thus no order can be
guaranteed."
Not rows, but blocks returned as is in order they being read. Keys (rows)
are ordered inside leaf blocks -- as you wrote above. So, inside the blocks
the order is consistent but blocks are 'mixed' whilst read.
Looks, like my text recognition engine got a glitch... ignore that
message, please.
--
Vladimir Begun
The statements and opinions expressed here are my own and
do not necessarily represent those of Oracle Corporation.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Vladimir Begun
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread Arup Nanda
David,

Answers to your questions:

(1) Without knowing your exact needs, I wil offer a few different scenarios.
I am assuming that you are doing a complete refresh every time. The
following pertain to that.

Say, your name of the MV is MV1. Here are the steps the first time.

1. Create table MV1
2. Create MV MV1 on that table.

When you want to refresh complete:

1. Create table MV1_TEMP. Choose a suitable method: CTAS across dblink (with
NOLOGGING), SQL*Loader, Direct Load Insert, or simpley exp/imp.
2. Drop MV MV1. This drops the MV but doesn't drop the table.
3. Drop table MV1.
4. Rename table MV1_TEMP to MV1.
5. Recreate MV MV1.
6. Allow users to proceed as usual.

Note the time consumed between Steps 2 and 6 are in the order of a few
seconds. And it's the only time the users will not have access to the MV, as
opposed to a full refresh using dbms_mview.refresh approach., which will
lock the MV for the entire duration and generate tons of redo and rollback.

Even if you do a incremental refresh, this is still a better approach. In
that case, you don't drop the table during the refresh.

(2) Yes, the option is available in 8i, at least in 8.1.7. Make sure the
syntax is correct.

create materialized view MV1
on prebuilt table
refresh fast
as
select ... from 

In the article I mentioned, you can find the complete syntax.
www.proligence.com/downloads.html is the site. It also dscribes a step by
step solution to the issue and compares the common solution with this new
one.

Hope this helps.

Arup Nanda

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 12:34 PM
refresh - for


> Hi Arup,
>
> This is a very good method.  I would like to use it to modify some of my
> data loading procedures.  Here are my questions:
> 1. Do I need to create the table on the step 1 every time when I refresh
the
> data If I refresh data once per day?
> 2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying the
> method on Oracle 8i, I got missing keyword error on "PREBUILT".
>
> Dave
>
> >
> >Siddharth,
> >
> >I will offer a slightly out-of-the-box solution. Please read it through
> >till the end to determine its applicability in your case.
> >
> >It seems yours refresh interval is once a day and you don't mind stale
> >data for a max of 24 hours. You also refresh is complete, not
> >incremental. So, I would suggest the follwoing approach.
> >
> >(1) Create a table first
> >CREATE TABLE CT_PRODUCTID_VW
> >TABLESPACE 
> >NOLOGGING
> >AS
> >SELECT .
> >
> >(2) When you are ready to "refresh", drop the MV
> >DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
> >
> >(3) Create the MV with the PREBUILT TABLE option.
> >CREATE
> >MATERIALIZED VIEW CT_PRODUCTID_VW
> >BUILD IMMEDIATE
> >REFRESH START WITH SYSDATE
> >NEXT (SYSDATE + 1)
> >ON PREBUILT TABLE
> >AS
> >SELECT
> > msi.segment1productid,
> >...
> >
> >Your MV is not accessible between STEP 2 and STEP3, which is really a
> >dictionary update and takes about a second or so. So the "outage" is
> >really 1 second, not 1/2 hr.
> >
> >A few explanations are in order here.
> >
> >(1) Creating an MV on a Prebuilt Table does not consume more space. The
> >segment that used to be a table simply becomes an MV.
> >(2) When you drop the MV, the MV is gone, but the table remains instact.
> >(3) The table can be create by any means - export/import, SQL*Loader,
> >INSERT APPEND, etc.
> >(4) IT places less strain on the system comapred to the MV refresh
> >option, simply because the MV refresh truncates the segment and then
> >builds it.
> >
> >I presented a paper to the same effect at IOUG Live 2003. You can
> >download a modified version of the same from my website
> >www.proligence.com/downlaods.html, titled "Painless Master Table Alter"
> >from the Presentations Section.
> >
> >HTH.
> >
> >Arup Nanda
> >
> >
> >
> >
> >
> >- Original Message -
> >To: Multiple recipients of list ORACLE-L
> >Sent: Tuesday, October 21, 2003 3:59 AM
> >refresh
> >
> >
> >Hi Gurus,
> >
> >I have a materialized view, which is based on Oracle Apps tables and on
> >remote database. The view refresh takes around ½ hour, during this time
> >period I cannot see any records in the materialized view and therefore
> >my application faces errors.
> >The following is the view definition
> >
> >CREATE
> >MATERIALIZED VIEW CT_PRODUCTID_VW
> >BUILD IMMEDIATE
> >REFRESH START WITH SYSDATE
> >NEXT (SYSDATE + 1)
> >AS
> >SELECT
> > msi.segment1productid,
> > msi.description description,
> > msi.inventory_item_id   inventory_item_id,
> > mc.segment1 product_family,
> > mc.segment2 product_type
> >FROM [EMAIL PROTECTED]  mcs,
> >  [EMAIL PROTECTED] mc,
> >  [EMAIL PROTECTED]mic,
> >  [EMAIL PROTECTED]   msi
> >where 1=1
> >and   mc.structure_id   =  50112
> >and   mc.segment3  != 'SPARE'
>

RE: index full scan over an index fast full scan in an analytic f

2003-10-24 Thread Khedr, Waleed
But the fact is, the access path is still a valid path if the user needs the
data returned ordered on the indexed columns.
Index_asc or Index_desc should do the job without extra cost.

Waleed

-Original Message-
Sent: Friday, October 24, 2003 9:39 PM
To: Multiple recipients of list ORACLE-L
function?


Tanel

Tanel Poder wrote:
> As an addition to Vladimir's response:

I cannot provide you with detailed information -- can only give pointers
to the documentation -- otherwise it would look suspicious :)

> Full scan will search from index root block using branch blocks to first
> leaf block. And since all leaf blocks have pointers to next and previous
> leaf block in index, sequentially reading only leaf blocks is sufficient
for
> returning all values in index, in order (keys are ordered inside leaf
blocks
> as well).
> 
> FFS will scan from index header block (note that index segment header and
> index root block are different ones) up to segment high water mark using
> multiblock reads and ignoring contents of root, branch, bitmap, extent
map,
> freelist group blocks. Rows are returned as they've read from blocks, thus
> no order can be guaranteed.

"Rows are returned as they've read from blocks, thus no order can be
guaranteed."

Not rows, but blocks returned as is in order they being read. Keys (rows)
are ordered inside leaf blocks -- as you wrote above. So, inside the blocks
the order is consistent but blocks are 'mixed' whilst read.

Things (parameters etc.) are changing, as Cary pointed out, principles are
not.
-- 
Vladimir Begun
The statements and opinions expressed here are my own and
do not necessarily represent those of Oracle Corporation.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Vladimir Begun
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Khedr, Waleed
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: index full scan over an index fast full scan in an analytic function?

2003-10-24 Thread Vladimir Begun
Tanel

Tanel Poder wrote:
As an addition to Vladimir's response:
I cannot provide you with detailed information -- can only give pointers
to the documentation -- otherwise it would look suspicious :)
Full scan will search from index root block using branch blocks to first
leaf block. And since all leaf blocks have pointers to next and previous
leaf block in index, sequentially reading only leaf blocks is sufficient for
returning all values in index, in order (keys are ordered inside leaf blocks
as well).
FFS will scan from index header block (note that index segment header and
index root block are different ones) up to segment high water mark using
multiblock reads and ignoring contents of root, branch, bitmap, extent map,
freelist group blocks. Rows are returned as they've read from blocks, thus
no order can be guaranteed.
"Rows are returned as they've read from blocks, thus no order can be
guaranteed."
Not rows, but blocks returned as is in order they being read. Keys (rows)
are ordered inside leaf blocks -- as you wrote above. So, inside the blocks
the order is consistent but blocks are 'mixed' whilst read.
Things (parameters etc.) are changing, as Cary pointed out, principles are
not.
--
Vladimir Begun
The statements and opinions expressed here are my own and
do not necessarily represent those of Oracle Corporation.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Vladimir Begun
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread Ryan
did i read that correctly that create table as is superior to a materialized
view for nightly loads? We drop all the tables in some of our schemas and
rebuild them with create table as statements. I was going to try out
materialized views to see if they were faster.

guess they are not?
- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 12:34 PM
refresh - for


> Hi Arup,
>
> This is a very good method.  I would like to use it to modify some of my
> data loading procedures.  Here are my questions:
> 1. Do I need to create the table on the step 1 every time when I refresh
the
> data If I refresh data once per day?
> 2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying the
> method on Oracle 8i, I got missing keyword error on "PREBUILT".
>
> Dave
>
> >
> >Siddharth,
> >
> >I will offer a slightly out-of-the-box solution. Please read it through
> >till the end to determine its applicability in your case.
> >
> >It seems yours refresh interval is once a day and you don't mind stale
> >data for a max of 24 hours. You also refresh is complete, not
> >incremental. So, I would suggest the follwoing approach.
> >
> >(1) Create a table first
> >CREATE TABLE CT_PRODUCTID_VW
> >TABLESPACE 
> >NOLOGGING
> >AS
> >SELECT .
> >
> >(2) When you are ready to "refresh", drop the MV
> >DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
> >
> >(3) Create the MV with the PREBUILT TABLE option.
> >CREATE
> >MATERIALIZED VIEW CT_PRODUCTID_VW
> >BUILD IMMEDIATE
> >REFRESH START WITH SYSDATE
> >NEXT (SYSDATE + 1)
> >ON PREBUILT TABLE
> >AS
> >SELECT
> > msi.segment1productid,
> >...
> >
> >Your MV is not accessible between STEP 2 and STEP3, which is really a
> >dictionary update and takes about a second or so. So the "outage" is
> >really 1 second, not 1/2 hr.
> >
> >A few explanations are in order here.
> >
> >(1) Creating an MV on a Prebuilt Table does not consume more space. The
> >segment that used to be a table simply becomes an MV.
> >(2) When you drop the MV, the MV is gone, but the table remains instact.
> >(3) The table can be create by any means - export/import, SQL*Loader,
> >INSERT APPEND, etc.
> >(4) IT places less strain on the system comapred to the MV refresh
> >option, simply because the MV refresh truncates the segment and then
> >builds it.
> >
> >I presented a paper to the same effect at IOUG Live 2003. You can
> >download a modified version of the same from my website
> >www.proligence.com/downlaods.html, titled "Painless Master Table Alter"
> >from the Presentations Section.
> >
> >HTH.
> >
> >Arup Nanda
> >
> >
> >
> >
> >
> >- Original Message -
> >To: Multiple recipients of list ORACLE-L
> >Sent: Tuesday, October 21, 2003 3:59 AM
> >refresh
> >
> >
> >Hi Gurus,
> >
> >I have a materialized view, which is based on Oracle Apps tables and on
> >remote database. The view refresh takes around ½ hour, during this time
> >period I cannot see any records in the materialized view and therefore
> >my application faces errors.
> >The following is the view definition
> >
> >CREATE
> >MATERIALIZED VIEW CT_PRODUCTID_VW
> >BUILD IMMEDIATE
> >REFRESH START WITH SYSDATE
> >NEXT (SYSDATE + 1)
> >AS
> >SELECT
> > msi.segment1productid,
> > msi.description description,
> > msi.inventory_item_id   inventory_item_id,
> > mc.segment1 product_family,
> > mc.segment2 product_type
> >FROM [EMAIL PROTECTED]  mcs,
> >  [EMAIL PROTECTED] mc,
> >  [EMAIL PROTECTED]mic,
> >  [EMAIL PROTECTED]   msi
> >where 1=1
> >and   mc.structure_id   =  50112
> >and   mc.segment3  != 'SPARE'
> >and   mc.global_name= 'US'
> >and   mc.enabled_flag   = 'Y'
> >and   mcs.global_name   = mc.global_name
> >and   mcs.category_set_name = 'PROD GROUP'
> >and   mic.category_set_id   = mcs.category_set_id
> >and   mic.category_id   = mc.category_id
> >and   mic.global_name   = mc.global_name
> >and   mic.organization_id   = 1
> >and   mic.inventory_item_id = msi.inventory_item_id
> >and   msi.organization_id   = mic.organization_id
> >and   msi.global_name   = mc.global_name
> >AND   msi.auto_created_config_flag = 'N'
> >AND   msi.item_type IN ('ATO MODEL','CONFIG SPARE','CONFIG
> >SUB','FEATURE PACK','PRODUCT LIST>$0','PTO MODEL','SPARE')
> >and   msi.inventory_item_status_code IN
> >('ENABLE-MAJ','ENABLE-NON','ENABLE-OPT','NONORD')
> >
> >Please note that the tables referenced are remote tables and Oracle Apps
> >tables and not logging on it is possible.
> >Please suggest an appropriate refresh mechanism to see the records even
> >during refresh period.
> >
> >Thanks in advance.
> >
> >With Warm Regards
> >
> >
> >
> >Siddharth Haldankar
> >Zensar Technologies Ltd.
> >Cisco Systems Inc.
> >(Offshore Development Center)
> >#  : 091 020 4128394
> >[EMAIL PROTECTED]
> >[EMAIL PROTECTED]
> >

RE: RE: dba interview questions

2003-10-24 Thread Jamadagni, Rajendra
I always find syntax examples in manuals ... don't know why ...

Raj

-Original Message-
Sent: Friday, October 24, 2003 11:59 AM
To: Multiple recipients of list ORACLE-L


not sure i like the 'read outside the oracle manuals'. I find that alot of people read 
alot of really bad books and then dont read the stuff on OTN. 

oracle has very good docs. I do have a beef over lack of syntax examples... 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask them to 
> defend it. Small issues like "Why would/wouldn't an index help?"  etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in last 3 
> months outside of Oracle manuals?" or "Do you know any other sites that give you lot 
> of oracle related information?" I expect to hear at-least couple form following list 
> ... ixora, hotsos, jlcomp, oracle-dba, oraperf, orapub. If they mention that they 
> have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals questions become a 
> little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates via phone 
> interviews. 
> Two out of four I talked to gave me perfect answers: word to word from Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask him/her to 
> draw the SGA
> with all it interal structures, all background processes, and explain how all this 
> works
> together. 
> 
> - Kirti 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have received this message in error, or are 
> not the named recipient(s), please immediately notify corporate MIS at (860) 
> 766-2000 and delete this e-mail message from your computer, Thank you.
> **4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

**
This e-mail message is confidential, intended only for the named recipient(s) above 
and may contain information that is privileged, attorney work product or exempt from 
disclosure under applicable law. If you have received this message in error, or are 
not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 
and delete this e-mail message from your computer, Thank you.
**4
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jamadagni, Rajendra
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also se

Re: RMAN Incremental

2003-10-24 Thread Jared Still
Michal,

Are you using partitioning, and if so, are there
tablespaces you can set to read only?

If so, then you only need to back up the read only
tablespaces often enough that your backup software
retention time doesn't cause the RO TBS's to all be
aged out.

This could eliminate a lot of backup time/tape.

Jared

On Fri, 2003-10-24 at 16:34, Michael Kline wrote:
> I'm working at a Data Warehouse and they are looking for backup
> possibilities...
> 
> This is almost a TB, a baby, and it may be that RMAN with incremental could
> be a good solution.
> 
> If say for instance there is a single tablespace of some 100 gig and they
> add 200,000,000 records to one of the tables and we do an incremental
> backup. Is the whole tablespace slated for backup?
> 
> Also if this tablespace was lost, and we recover.. What happens during that
> process? Does RMAN basically have to filter through two complete copies of
> that tablespace or just once and then get changed blocks?
> 
> What solutions have some doing this found to be "best practice"?
> 
> Thanks.
> 
> Michael Kline, Principal Consultant
> Business To Business Solutions, LLC
> Richmond, VA
> 804-744-1545
> 


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: RE: index full scan over an index fast full scan in an analytic function?

2003-10-24 Thread Cary Millsap
:)

I didn't study that stuff very much in my last five years at Oracle.
Fast-full index scans weren't around when I was digging in the dirt.
Anyway, things change across versions, and it's impossible to remember
everything in one brain anyway...

So,... test!


Cary Millsap
Hotsos Enterprises, Ltd.
http://www.hotsos.com

Upcoming events:
- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
- SQL Optimization 101: 12/8-12 Dallas
- Hotsos Symposium 2004: March 7-10 Dallas
- Visit www.hotsos.com for schedule details...


-Original Message-
[EMAIL PROTECTED]
Sent: Friday, October 24, 2003 12:30 PM
To: Multiple recipients of list ORACLE-L
analytic function?

you worked for oracle for 10 years and you have to guess? how secret do
they keep these internals documents on the algorithms? 
> 
> From: "Cary Millsap" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri PM 01:19:25 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: index full scan over an index fast full scan in an
analytic function?
> 
> The FF index scan reads all the block in the index, using multiblock
> reads. The kernel then discards the branch blocks. If sorting of the
> result set is required, then this is a separate row source operation,
> because the rows don't come out of the segment in sorted order.
> 
> To see why, imagine the following index "picture", which I'll draw
> sideways, using indentation to denote the parent-child relationship.
> It's a pretty stupid-looking index (Oracle can have many more children
> per branch block than I'll draw), but it'll work to illustrate. I'll
> label each block in the index with file#:block#.
> 
> 23:14
>   23:15
>   23:18
>   23:19
>   23:22
>   23:20
>   23:17
>   23:25
>   23:24
>   23:21
>   23:16
>   23:23
> 
> To range-scan the rows in the index, the kernel would read the
following
> blocks from file 23 using 'db file sequential read', in this order:
> 
>   18, 19, 22, 17, 25, 21, 16, 23.
> 
> To FF scan the index, Oracle would read the following blocks using 'db
> file scattered read' (assume a value of 8 for my example), in this
> order:
> 
>   14-21, 22-25
> 
> In using the results, the kernel would discard blocks 14, 15, 20, and
> 24. As I said, if the kernel needed the rows in the remaining blocks
to
> be in logical order (as opposed to the physical order in which they
were
> obtained), then the kernel would have to sort them.
> 
> This is how I think FF scan works. To be sure, trace a simple FF scan,
> using extended SQL trace (event 10046 level 8).
> 
> 
> Cary Millsap
> Hotsos Enterprises, Ltd.
> http://www.hotsos.com
> 
> Upcoming events:
> - Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
> - SQL Optimization 101: 12/8-12 Dallas
> - Hotsos Symposium 2004: March 7-10 Dallas
> - Visit www.hotsos.com for schedule details...
> 
> 
> -Original Message-
> Mladen Gogala
> Sent: Thursday, October 23, 2003 10:34 PM
> To: Multiple recipients of list ORACLE-L
> function?
> 
> B*tree indexes are ALWAY ordered. That's the way they're created and
> searched.
> I don't know the difference between full index scan and fast full
index
> scan.  
> I know that the latter is used when the tble rows are not needed.
Sounds
> like
> both methods are reading all leaf blocks, from start to finish, using

> multiblock read. I am not aware of any difference between the two
> methods.
> This sounds like a question for asktom or ixora (Tom Kyte or Steve
> Adams).
> Wolfgang Breitling and J. Lewis might also know.
> 
> On 2003.10.23 23:14, Larry Elkins wrote:
> > Because when doing an index range scan things are read ordered? Very
> > different from an index fast full scan where blocks are simply
grabbed
> where
> > they might lie?
> > 
> > Regards,
> > 
> > Larry G. Elkins
> > The Elkins Organization Inc.
> > [EMAIL PROTECTED]
> > 214.954.1781
> > 
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf
> Of
> > > Ryan
> > > Sent: Thursday, October 23, 2003 9:34 PM
> > > To: Multiple recipients of list ORACLE-L
> > > Subject: Re: index full scan over an index fast full scan in an
> analytic
> > > function?
> > >
> > >
> > > why would you not need a sort with a full index scan and need one
> with a
> > > fast full scan?
> > > - Original Message -
> > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > > Sent: Thursday, October 23, 2003 5:19 PM
> > > function?
> > >
> > >
> > > > Possibly to avoid a sort operation (assuming that you might be
> > > able to get
> > > > away with a NOSORT when doing the full index scan)? It might be
> deciding
> > > > that the benefit of the multi-block reads for the fast full
> > > scan are more
> > > > than offset by the sort operation that would be needed (and
might
> not be
> > > > needed when doing the full index scan).
> > > >
> > > > Regards,
> > > >
> > >

RE: how to specify tablespace in Designer

2003-10-24 Thread TOMPKINS, MARGARET
Have you got into Oracle SCM yet?  It's an even more amazing beast!  Maggie

Respectfully,
> Maggie Tompkins - CAD SQA
> Corporate Applications Division
> Technology Services Organization - Kansas City
> Defense Finance and Accounting Service
> 816-926-1117 (DSN 465); [EMAIL PROTECTED]


-Original Message-
Sent: Friday, October 24, 2003 3:19 PM
To: Multiple recipients of list ORACLE-L


Hats off and thanks to all for the great responses. I am well
on my way now. This Designer beast is quite amazing.

Ben

-Original Message-
Sent: October 23, 2003 2:02 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'


Ben,

You need to implement the table to assign storage attributes to it.  This
can be done either in the Ron or Db Designer where you are at.

In Db Designer/DbAdmin tab, expand the database|Users|spcific
User|Schema|Table Implementations entry.  Click the green plus to implement
a table in this area, and you should see the properties attribute pop up.
Optionally right click on the Table Implementations selection and select
"Create Table Implementations".

Good Luck!

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, October 23, 2003 2:45 PM
To: Multiple recipients of list ORACLE-L


Hi

Can someone who has used Designer to generate DDL let
me know how you specify which tablespace a table or index
is to be created in. I am using the Design Editor and
the DBAdmin tab and can't seem to find it. 
Thanks in advance.

Ben
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ben
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ben
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: TOMPKINS, MARGARET
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle pricing ain't going down

2003-10-24 Thread Todd Boss
Identity has come a LONG way in Sybase since its initial introduction
back in Sybase v10.0 (1994).  In fact, the latest versions of Sybase
have identities tuned almost to where they emulate a monotonically
increasing sequence in every capacity (if you set the parameters 
correctly).  

I've never seen duplicate values with it though.  The most common
complaint is with "gaps" in the assigned values (since Sybase caches
large chunks of numbers to pre-use, and loses them upon abnormal
shutdowns).  However, there's remedies even for that situation.
(see http://www.sypron.nl/idgaps.html for a great writeup).

Surf to http://www.isug.com/Sybase_FAQ/ASE/section6.2.html#6.2.9
for more information.  That's the direct link to the Identity 
section of the Sybase FAQ ... its a little dated but most of the 
info is still valid.  I actually wrote this "answer" for the 
Sybase FAQ back in 1997 (so yes i know what i'm talking about, 
i think.  :-) )

Todd Boss (a true Sybase dba now hanging out in an oracle world).


> 
> "IDENTITY" does not have exactly "SEQUENCE" functionality.
> It is a property, you can assign to a column.  And it has "buggy"
> implementation, I've seen duplicate values (not sure about the latest
> version).  So be careful with this feature.
> 
> As for "clustered indexes" - you are correct.  Actually SQL Server
> (Sybase) had them before Oracle implemented IOTs.
> 
> Igor Neyman, OCP DBA
> [EMAIL PROTECTED]
> 
> 
> 
> -Original Message-
> Abey Joseph
> Sent: Friday, October 24, 2003 1:44 PM
> To: Multiple recipients of list ORACLE-L
> 
> My workplace is going in the same direction as David Mitchell's.  Our
> OLTP
> systems are Oracle, basically everything else is being (or being
> considered)
> migrated to MSSQL2000.
> 
> I am not that familiar with SQL Server, but I believe SQL2000 has
> sequences.
> I think MS calls it identity.  I think MS also has IOT, which they call
> clustered indexes.  MS might even have function based indexes with
> SQL2000,
> but not very sure.  Anyone care to comment?
> 
> Abey.
> 
> - Original Message - 
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Thursday, October 23, 2003 11:19 PM
> 
> 
> > > -Original Message-
> > > From: Ryan [mailto:[EMAIL PROTECTED]
> > > Sent: Friday, 24 October 2003 12:44
> > > To: Multiple recipients of list ORACLE-L
> > > Subject: Re: Oracle pricing ain't going down
> > >
> > >
> > > what is MSEE lacking in?
> >
> > 
> >
> > Here's a start.  MSSQLServer EE has ...
> >
> > No bitmap indexes, no partitioned indexes, no function-based indexes,
> no
> domain indexes, no reverse key indexes, no object tables, no before
> triggers
> (can be kludged, not pretty), no multiple actions per trigger event, no
> 3rd-party language support a la Oracle's JVM and pro*... modules, no
> built-in OLAP (it's a weird bolt-on), no control over extent size, no
> control over block size, no star query optimisation, no sequences, no
> synonyms, no packages, no structured exception handling in stored proc
> language (TSQL), no MINUS union operator, no multiplexing or mirroring
> of
> log files, no cyclical log management, no escalation-free locking, no
> index
> organised tables.
> >
> > (Working with both every day, do you get the feeling I've been asked
> this
> before? :-))
> >
> > Half of those things are available in Oracle SE One :-)
> >
> > Ciao
> > Fuzzy
> > :-)
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Grant Allen
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> >
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Abey Joseph
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Igor Neyman
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www

RMAN Incremental

2003-10-24 Thread Michael Kline



I'm working at a 
Data Warehouse and they are looking for backup possibilities... 

 
This is almost a 
TB, a baby, and it may be that RMAN with incremental could be a good 
solution.
 
If say for instance 
there is a single tablespace of some 100 gig and they add 200,000,000 records to 
one of the tables and we do an incremental backup. Is the whole tablespace 
slated for backup?
 
Also if this 
tablespace was lost, and we recover.. What happens during that process? Does 
RMAN basically have to filter through two complete copies of that 
tablespace or just once and then get changed blocks?
 
What solutions have 
some doing this found to be "best practice"?
 
Thanks.


Michael Kline, Principal ConsultantBusiness To Business 
Solutions, LLCRichmond, 
VA804-744-1545


RE: VPN to database?

2003-10-24 Thread Jared Still
I suppose it could be setup that way, but ours is not.

The only way to connect to a database from a local app
through the vpn ( for me anyway ) is to tunnel sqlnet
through ssh.

We could set it up to allow a certain range of ports
through, just as we do for other apps, but I don't
see any point in it, as I'm the only one that would
benefit from it.  :)

Jared

On Fri, 2003-10-24 at 14:29, Goulet, Dick wrote:
> Jared,
> 
>   I'm no network guru, so take this with a ton of salt, but this is how I 
> believe our network admin has it setup.  The VPN tunnel comes in thru the outer 
> firewall on a specific port to the vpn server in the DMZ.  The vpn server then 
> spreads the ports out as needed to the inner firewall which opens up all ports on 
> the inside to that one server/ip address.  Therefore from the applications point of 
> view the inside of the firewall looks the same whether your connected directly on 
> the local lan or coming in via VPN.  And if it's that simple, I'm going to be 
> greatly suprised.  But I will point out that if the vpn security stuff is not set up 
> just right or gets disturbed the whole thing shuts down better than a clam.
> 
> Dick Goulet
> Senior Oracle DBA
> Oracle Certified 8i DBA
> 
> -Original Message-
> Sent: Friday, October 24, 2003 5:14 PM
> To: Multiple recipients of list ORACLE-L
> 
> 
> You're going through a firewall that allows port 22 to go
> through and connect to your ssh daemon via the VPN.
> 
> Port 15xx is likely being blocked, as well as the range
> of ports used to create the sqlnet connections.
> 
> I'm not a security guru, but I doubt that the firewall admins
> are opening all the ports just because you're connecting
> via VPN.  
> 
> I also connect through a VPN, but the only ways I know of
> to connect from my local apps to a database behind the firewall
> is to open up some ports ( probably won't fly ) or tunnel
> the sqlnet in via ssh.
> 
> Jared
> 
> 
> On Fri, 2003-10-24 at 13:19, Todd Boss wrote:
> > No, but (and forgive me for asking) why does that matter?
> > 
> > Is sqlnet tunneling important for security reasons, or important
> > for connectivity?  I'm able to telnet to the box straight away.
> > 
> > I figured that, once VPN was connected, I'd be able to run whatever
> > applications I wanted locally.  After not being able to get
> > any Oracle client to connect, i wondered if VPN had the capability
> > to transmit anything but the "lowest" level of tcp/ip protocols.
> > 
> > boss
> > 
> > > 
> > > 
> > > Are you tunneling sqlnet through ssh?
> > > 
> > > http://www.akadia.com/services/ssh_install_and_use.html
> > > 
> > > On Fri, 2003-10-24 at 08:44, Todd Boss wrote:
> > > > I can tell you right now, i'm VPN'd to a client overseas and have
> > > > NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> > > > to the machine where the Oracle server runs (its Solaris) and work
> > > > via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> > > > version of sql*plus connected to the remote server).
> > > > 
> > > > If there's some secret to making OCI work over VPN, we were not able
> > > > to find it.
> > > > 
> > > > boss
> > > > 
> > > > > 
> > > > > We are an Application Service Provider--we maintain a set of servers in
> > > > > a colocation facility and our customers use our application via the
> > > > > Web.  Security is a paramount concern, of course, and only our Web
> > > > > server has a public IP address, with the application and database
> > > > > servers completely private. 
> > > > > 
> > > > > We supply a number of standard reports, but most of our customers want
> > > > > some custom reports as well.  We would like to give them access to our
> > > > > database, possibly over a VPN, but only if security can be maintained. 
> > > > > I'd like to know if anyone has faced such a situation, and what kind of
> > > > > configuration (network/firewall/VPN/Oracle Net) might make such access
> > > > > possible.
> > > > > 
> > > > > TIA,
> > > > > 
> > > > > 
> > > > > 
> > > > > =
> > > > > Paul Baumgartel
> > > > > Transcentive, Inc.
> > > > > www.transcentive.com
> > > > > 
> > > > > __
> > > > > Do you Yahoo!?
> > > > > The New Yahoo! Shopping - with improved product search
> > > > > http://shopping.yahoo.com
> > > > > -- 
> > > > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > > > -- 
> > > > > Author: Paul Baumgartel
> > > > >   INET: [EMAIL PROTECTED]
> > > > > 
> > > > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > > > San Diego, California-- Mailing list and web hosting services
> > > > > -
> > > > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > > > (or the na

RE: VPN to database?

2003-10-24 Thread Jared Still
Yes, I will ditto the recommendation for Pete Finnigan's book.

Jared

On Fri, 2003-10-24 at 10:29, DENNIS WILLIAMS wrote:
> Paul - We have some of the similar issues here (network/firewall/VPN/Oracle
> Net). Based on your description of your business, you probably have some
> competent network engineers on staff. My experience is that they routinely
> handle issues like this, and you probably won't need to get involved in the
> actual configuration. However, you should educate yourself in the security
> issues involved so you can participate intelligently in any discussions from
> the database point of view. As a starter, I am including two recent
> excellent postings to this list from Tim Gorman and Ian MacGregor. Just
> scroll down.
> 
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED] 
> 
> Sent: Thursday, August 07, 2003 10:25 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> Sandro,
> 
> There is an excellent book on "Oracle Security" available online from
> "http://www.sans.org";.  Concise, organized, and prioritized.  Also, Newman
> and Theriault's "Oracle Security Handbook" from Oracle Press is chock full
> of common sense...
> 
> Not sure what the question about "automating the migration of stored
> procedures" refers to.  Could you provide more information?  I don't think I
> understand the problem...
> 
> Storing password files on the database server is mainly an exercise in
> ensuring that OS security and file permissions properly implemented.  If you
> cannot ensure that OS files are properly secured, then the entire Oracle
> database is at risk, not to mention files containing clear-text passwords.
> After all, one can view data within datafiles using programs other than the
> Oracle RDBMS...
> 
> The idea of creating production schemas/logins to separate object ownership
> from application/end-user access is excellent.  To avoid using synonyms,
> consider the functionality of the "ALTER SESSION SET CURRENT_SCHEMA =
> " command being executed in an AFTER LOGON trigger in all
> accounts used for end-user access.  It is a little-known but wonderfully
> manageable bit of functionality...
> 
> Hope this helps...
> 
> -Tim
> -Original Message-
> Sent: Wednesday, October 01, 2003 5:19 PM
> To: Multiple recipients of list ORACLE-L
> 
> 
> Our security folks just sent me this.
> 
> Ian MacGregor
> Stanford Linear Accelerator Center
> [EMAIL PROTECTED] 
> 
> -Original Message-
> Sent: Tuesday, September 30, 2003 1:35 PM
> To: [EMAIL PROTECTED]
> 
> 
> I've posted the presentation I gave at OracleWorld last month. This
> presentation covers writing secure code in Oracle databases and Oracle
> Application Server. The topics covered include:
> 
> Managing state
> Query parameters
> Hidden fields
> Cookies
> Cross-site scripting
> SQL Injection
> PL/SQL Injection
> Buffer overflows in EXTPROC
> Resources
> 
> You can download the presentation at
> http://www.appsecinc.com/techdocs/presentations.html under the heading
> "Writing Secure Code in Oracle Presentation".
> 
> I welcome comments and criticisms.
> 
> Regards,
> Aaron
> ___
> Aaron C. Newman
> CTO/Founder
> Application Security, Inc.
> www.appsecinc.com
> Phone: 212-420-9270
> Fax: 212-420-9680
> - Securing Business by Securing Enterprise Applications -
> 
> 
> Sent: Friday, October 24, 2003 10:14 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> We are an Application Service Provider--we maintain a set of servers in
> a colocation facility and our customers use our application via the
> Web.  Security is a paramount concern, of course, and only our Web
> server has a public IP address, with the application and database
> servers completely private. 
> 
> We supply a number of standard reports, but most of our customers want
> some custom reports as well.  We would like to give them access to our
> database, possibly over a VPN, but only if security can be maintained. 
> I'd like to know if anyone has faced such a situation, and what kind of
> configuration (network/firewall/VPN/Oracle Net) might make such access
> possible.
> 
> TIA,
> 
> 
> 
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for o

RE: full recovery

2003-10-24 Thread Andy Rivenes

I haven't followed this whole thread, but here's the answer to restoring
the control file from an RMAN backup pre-9i. In 9i it's much easier using
controlfile autobackups.
Restoring the Control File from a Backup Set Without Using RMAN
The following is taken straight from the Oracle documentation:

“You must use a non-standard procedure to restore a control file from
an RMAN backup set in the following situations: 


-   You
are using a pre-8.0.5 version of RMAN to restore a database when more
than one database with the same name is registered in the recovery
catalog (see "Restoring When Multiple Databases Share the Same
Name" for a discussion of this problem).

-   You
are not using a recovery catalog, and your only control file backup is in
an RMAN backup set. 


If you have no other backup of the control file except in a RMAN
backup set, and you need the control file to perform a restore operation,
use the following PL/SQL program to extract the control file from the
backup set. Run this program from SQL*Plus while connected as SYSDBA to
the target database: 
DECLARE
devtype varchar2(256);
done    boolean;
BEGIN
devtype := dbms_backup_restore.deviceallocate('devtype',
params=>'');
# Replace 'devtype' with the device type you used when creating the
backup: NULL or 
# sbt_tape.  If you used an sbt_tape device and specified a 'parms'
option on the RMAN 
# allocate channel command, then put that parms data in the 'params'
operand here.
dbms_backup_restore.restoresetdatafile;
dbms_backup_restore.restorecontrolfileto('/tmp/foo.cf');
# This path specifies the location for the restored control file. If
there are multiple
# control files specified in the init.ora file, copy the control file to
all specified 
# locations before mounting the database.
dbms_backup_restore.restorebackuppiece('handle',done=>done);
# Replace 'handle' with the your backup piece handle. This example
assumes that the 
# backup set contains only one backup piece. If there is more than one
backup piece in 
# the backup set (which only happens if the RMAN command set limit kbytes
is used), then 
# repeat the restorebackuppiece statement for each backup piece in the
backup set.
END;
/

After you have successfully restored the control file, you can mount
the database and perform restore and recovery operations.”

Andy Rivenes
[EMAIL PROTECTED]

At 12:24 PM 10/24/2003 -0800, you wrote:
AK
   Since extracting the controlfile from your backup seems to
be your major
issue, perhaps someone on this list that mastered that issue will reply
--
how about it? You could also Google for Oracle-L and RMAN, you might
find
where they posted it.
   8i? Check Appendix C of Freeman's book. The man thinks of
everything.
Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 



Re: Oracle pricing ain't going down

2003-10-24 Thread Todd Boss
Really?  I'm curious, because after reading up on Index-Organized
Tables, they sound actually pretty similar.

Clustered Index: an "ordering ruleset" for the data on the disk.
IOT: a method to store oracle rows in a b*Tree format instead of
the default rowid-controlled heap.

So, generically, both are ways you can control the physical order
of the data on your disk.  Is there more to it than this simplistic
explanation?  

Followup question: why not have EVERY table be an IOT in oracle?

(notwithstanding the known limitations of IOTs; no longs, no clustering)

Boss

> 
> IOT and clustered indexes are not comparable to each other.
> 
> -Original Message-
> Sent: Friday, October 24, 2003 2:44 PM
> To: Multiple recipients of list ORACLE-L
> 
> 
> My workplace is going in the same direction as David Mitchell's.  Our
> OLTP systems are Oracle, basically everything else is being (or being
> considered) migrated to MSSQL2000.
> 
> I am not that familiar with SQL Server, but I believe SQL2000 has
> sequences. I think MS calls it identity.  I think MS also has IOT, which
> they call clustered indexes.  MS might even have function based indexes
> with SQL2000, but not very sure.  Anyone care to comment?
> 
> Abey.
> 
> - Original Message - 
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Thursday, October 23, 2003 11:19 PM
> 
> 
> > > -Original Message-
> > > From: Ryan [mailto:[EMAIL PROTECTED]
> > > Sent: Friday, 24 October 2003 12:44
> > > To: Multiple recipients of list ORACLE-L
> > > Subject: Re: Oracle pricing ain't going down
> > >
> > >
> > > what is MSEE lacking in?
> >
> > 
> >
> > Here's a start.  MSSQLServer EE has ...
> >
> > No bitmap indexes, no partitioned indexes, no function-based indexes, 
> > no
> domain indexes, no reverse key indexes, no object tables, no before
> triggers (can be kludged, not pretty), no multiple actions per trigger
> event, no 3rd-party language support a la Oracle's JVM and pro*...
> modules, no built-in OLAP (it's a weird bolt-on), no control over extent
> size, no control over block size, no star query optimisation, no
> sequences, no synonyms, no packages, no structured exception handling in
> stored proc language (TSQL), no MINUS union operator, no multiplexing or
> mirroring of log files, no cyclical log management, no escalation-free
> locking, no index organised tables.
> >
> > (Working with both every day, do you get the feeling I've been asked 
> > this
> before? :-))
> >
> > Half of those things are available in Oracle SE One :-)
> >
> > Ciao
> > Fuzzy
> > :-)
> > --
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Grant Allen
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in 
> > the message BODY, include a line containing: UNSUB ORACLE-L (or the 
> > name of mailing list you want to be removed from).  You may also send 
> > the HELP command for other information (like subscribing).
> >
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Abey Joseph
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
> message BODY, include a line containing: UNSUB ORACLE-L (or the name of
> mailing list you want to be removed from).  You may also send the HELP
> command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Rothouse, Michael
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To

RE: full recovery

2003-10-24 Thread Mercadante, Thomas F
AK,
 
First, your normal backup should backup your database in the following
order:
 
Database, archivelogs and then control file.  I actually do this in three
separate Rman steps.  This is so that the most recent control file is
backups up after all of the data.  This allows your to perform an
incoimplete-recovery-restore to as late a time as possible.  Also, consider
adding a database trigger that, upon startup, perform an "alter database
backup controlfile to trace;"  Keep a copy of this trace file someplace safe
as a sanity check.  You could use it to recreate your controlfiles if all
else fails.
 
Your recovery steps are as follows:
 
1. restore oracle software from tape.
2. restore config files ( init.ora , listener. ora ).
3. startup instance with nomount.
4. run Rman to restore the control file from tape.
5. Alter database mount
6. run Rman to restore database files
7. alter database open resetlogs.
8. perform a brand-new Rman backup (database, logs & controlfile)
 
turn the system back to the users (with many back-pats from management).
 
You should be testing this on a regular basis.
 
Good Luck!
 
Tom Mercadante 
Oracle Certified Professional 

-Original Message-
Sent: Friday, October 24, 2003 2:15 PM
To: Multiple recipients of list ORACLE-L


Here is a scenerio :
I am taking full database backup everynight using rman to tape . which
includes archive logs and control file. Not using catalog.Also have a backup
of complete file system including oracle software and configuration files (
init.ora , listener.ora etc.. )
I lost the host on a particular day at 12 am afternoon. Now I want to
restore this db to latest possible time to another host ( with same name )


Re: VPN to database?

2003-10-24 Thread Mladen Gogala
Paul, our favorite health care company (we both used to work there)
is using Cisco VPN with SecurID tokens to grant remote access.
Once you log in, you are a part of the LAN and can use tnsnames.ora on
your local machine to connect to the PULSE database. No adjustments are
needed on the oracle side, but one needs to have the RSA token and  
Cisco VPN client to connect. I must say that the whole thing worked  
remarkably well and was sometimes even faster then the local LAN (I  
have cable modem).

On 10/24/2003 11:14:26 AM, Paul Baumgartel wrote:
We are an Application Service Provider--we maintain a set of servers
in
a colocation facility and our customers use our application via the
Web.  Security is a paramount concern, of course, and only our Web
server has a public IP address, with the application and database
servers completely private.
We supply a number of standard reports, but most of our customers  
want
some custom reports as well.  We would like to give them access to  
our
database, possibly over a VPN, but only if security can be  
maintained.

I'd like to know if anyone has faced such a situation, and what kind
of
configuration (network/firewall/VPN/Oracle Net) might make such  
access
possible.

TIA,



=
Paul Baumgartel
Transcentive, Inc.
www.transcentive.com
__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Paul Baumgartel
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Do not connect Oracle DB to the Internet. Oracle Alert #59

2003-10-24 Thread tjambu_fatcity
Thanks for sharing that Pete

ta
tony

At 02:39 AM 24/10/2003 -0800, you wrote:

>>>So who found out this vulnerability? David Litchfield? Aaron Newman?
>>>I know it is a bit silly to ask but does anyone know how
>>>to exploit this vulnerability?  Send it to me directly if you dont want to
>>>reply publicly
>
>Hi,
>
>Some guy called c0ntex, email [EMAIL PROTECTED] found it. If you want
>to know how to exploit it then just search google for "C0ntex Oracle"
>and many pages pop up with exploit code on them. For instance:
>
>http://www.security-corporation.com/exploits-20031018-000.html
>
>kind regards
>
>Pete
>-- 
>Pete Finnigan
>email:[EMAIL PROTECTED]
>Web site: http://www.petefinnigan.com - Oracle security audit specialists
>Book:Oracle security step-by-step Guide - see http://store.sans.org for details.
>
>-- 
>Please see the official ORACLE-L FAQ: http://www.orafaq.net
>-- 
>Author: Pete Finnigan
>  INET: [EMAIL PROTECTED]
>
>Fat City Network Services-- 858-538-5051 http://www.fatcity.com
>San Diego, California-- Mailing list and web hosting services
>-
>To REMOVE yourself from this mailing list, send an E-Mail message
>to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
>the message BODY, include a line containing: UNSUB ORACLE-L
>(or the name of mailing list you want to be removed from).  You may
>also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Do not connect Oracle DB to the Internet. Oracle Alert #59

2003-10-24 Thread tjambu_fatcity

Hi Mike
Here it is again.  Let me know if you can read it.
ta
tony
At 08:54 AM 23/10/2003 -0800, Vergara, Michael (TEM) wrote:
Tony:
 
I did not receive the attachment
clearly.  Can you re-send it
or cite the source?
 
Thanks,
Mike
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 23, 2003 6:25 AM
To: Multiple recipients of list ORACLE-L
Subject: Do not connect Oracle DB to the Internet. Oracle Alert
#59

Important:  Please read the following Oracle Alert.

We strongly recommend that you do not connect the Oracle Database
directly to the Internet.

Got your attention?  That is what is in the Alert.  These
alerts are beginning 
to come all too often.  Sounds just like Microsoft's software,
yeah?

Buffer Overflow in Oracle Database Server Binaries
This is with the Oracle kernel/binary itself ie 'oracle' or 'oracleO'
file
in $ORACLE_HOME/bin.


Description
A potential buffer overflow has been discovered in the
"oracle" and "oracleO" (the letter O) binaries
of the Oracle Database. A knowledgeable and malicious local user can
exploit this buffer overflow
to execute code on the operating system hosting the Oracle Database
server.
Products Affected
· Oracle 9i Database Release 2, Version
9.2.x
· Oracle 9i Database Release 1, Version 9.0.x
Platforms Affected
All supported UNIX and Linux operating system variants.


Patch only available for Linux right now.  

So who found out this vulnerability? David Litchfield? Aaron 
Newman?
I know it is a bit silly to ask but does anyone know how 
to exploit this vulnerability?  Send it to me directly if you
dont want to 
reply publicly

ta
tony



2003alert59.pdf
Description: Adobe PDF document


RE: RE: dba interview questions

2003-10-24 Thread Odland, Brad
I would have answered:

 I'd send the list to the help desk as they take care of logins
and tell them to lock all accounts except the list I send.

What is it you say?? your help desk doesn't do that? Tsk, tsk, tsk...

hehehe



-Original Message-
Sent: Friday, October 24, 2003 1:00 PM
To: Multiple recipients of list ORACLE-L


Sure do, here's my favorite:

You have a database with 3000 registered users, you need to lock all
accounts except for a list of 20.  How would you do it?

Obviously there's several correct answers.  But the one I'm looking for is
the "anonymous PL/SQL block" defined like:

declare 
stmt varchar2(200);
begin
for a in (select username from dba_users
  where username not in ('SYS','SYSTEM',...)) loop
stmt := 'alter user '||a.username||' account lock';
execute immediate stmt;
end loop;
end;
/


Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 12:00 PM
To: Multiple recipients of list ORACLE-L


do any of you ask dbas pl/sql questions? I think its important for DBAs to
be good developers as well. especially if they are part of a development
team. I dont think the skill sets should be seperate. they overlap. 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask
them to defend it. Small issues like "Why would/wouldn't an index help?"
etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in
last 3 months outside of Oracle manuals?" or "Do you know any other sites
that give you lot of oracle related information?" I expect to hear at-least
couple form following list ... ixora, hotsos, jlcomp, oracle-dba, oraperf,
orapub. If they mention that they have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals
questions become a little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates
via phone interviews. 
> Two out of four I talked to gave me perfect answers: word to word from
Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask
him/her to draw the SGA
> with all it interal structures, all background processes, and explain how
all this works
> together. 
> 
> - Kirti 
> 
>

**
> This e-mail message is confidential, intended only for the named
recipient(s) above and may contain information that is privileged, attorney
work product or exempt from disclosure under applicable law. If you have
received this message in error, or are not the named recipient(s), please
immediately notify corporate MIS at (860) 766-2000 and delete this e-mail
message from your computer, Thank you.
>

**4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Goulet, Dick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
--

Re: RE: index full scan over an index fast full scan in an analytic function?

2003-10-24 Thread rgaffuri
you worked for oracle for 10 years and you have to guess? how secret do they keep 
these internals documents on the algorithms? 
> 
> From: "Cary Millsap" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri PM 01:19:25 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: index full scan over an index fast full scan in an analytic function?
> 
> The FF index scan reads all the block in the index, using multiblock
> reads. The kernel then discards the branch blocks. If sorting of the
> result set is required, then this is a separate row source operation,
> because the rows don't come out of the segment in sorted order.
> 
> To see why, imagine the following index "picture", which I'll draw
> sideways, using indentation to denote the parent-child relationship.
> It's a pretty stupid-looking index (Oracle can have many more children
> per branch block than I'll draw), but it'll work to illustrate. I'll
> label each block in the index with file#:block#.
> 
> 23:14
>   23:15
>   23:18
>   23:19
>   23:22
>   23:20
>   23:17
>   23:25
>   23:24
>   23:21
>   23:16
>   23:23
> 
> To range-scan the rows in the index, the kernel would read the following
> blocks from file 23 using 'db file sequential read', in this order:
> 
>   18, 19, 22, 17, 25, 21, 16, 23.
> 
> To FF scan the index, Oracle would read the following blocks using 'db
> file scattered read' (assume a value of 8 for my example), in this
> order:
> 
>   14-21, 22-25
> 
> In using the results, the kernel would discard blocks 14, 15, 20, and
> 24. As I said, if the kernel needed the rows in the remaining blocks to
> be in logical order (as opposed to the physical order in which they were
> obtained), then the kernel would have to sort them.
> 
> This is how I think FF scan works. To be sure, trace a simple FF scan,
> using extended SQL trace (event 10046 level 8).
> 
> 
> Cary Millsap
> Hotsos Enterprises, Ltd.
> http://www.hotsos.com
> 
> Upcoming events:
> - Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
> - SQL Optimization 101: 12/8-12 Dallas
> - Hotsos Symposium 2004: March 7-10 Dallas
> - Visit www.hotsos.com for schedule details...
> 
> 
> -Original Message-
> Mladen Gogala
> Sent: Thursday, October 23, 2003 10:34 PM
> To: Multiple recipients of list ORACLE-L
> function?
> 
> B*tree indexes are ALWAY ordered. That's the way they're created and
> searched.
> I don't know the difference between full index scan and fast full index
> scan.  
> I know that the latter is used when the tble rows are not needed. Sounds
> like
> both methods are reading all leaf blocks, from start to finish, using  
> multiblock read. I am not aware of any difference between the two
> methods.
> This sounds like a question for asktom or ixora (Tom Kyte or Steve
> Adams).
> Wolfgang Breitling and J. Lewis might also know.
> 
> On 2003.10.23 23:14, Larry Elkins wrote:
> > Because when doing an index range scan things are read ordered? Very
> > different from an index fast full scan where blocks are simply grabbed
> where
> > they might lie?
> > 
> > Regards,
> > 
> > Larry G. Elkins
> > The Elkins Organization Inc.
> > [EMAIL PROTECTED]
> > 214.954.1781
> > 
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf
> Of
> > > Ryan
> > > Sent: Thursday, October 23, 2003 9:34 PM
> > > To: Multiple recipients of list ORACLE-L
> > > Subject: Re: index full scan over an index fast full scan in an
> analytic
> > > function?
> > >
> > >
> > > why would you not need a sort with a full index scan and need one
> with a
> > > fast full scan?
> > > - Original Message -
> > > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > > Sent: Thursday, October 23, 2003 5:19 PM
> > > function?
> > >
> > >
> > > > Possibly to avoid a sort operation (assuming that you might be
> > > able to get
> > > > away with a NOSORT when doing the full index scan)? It might be
> deciding
> > > > that the benefit of the multi-block reads for the fast full
> > > scan are more
> > > > than offset by the sort operation that would be needed (and might
> not be
> > > > needed when doing the full index scan).
> > > >
> > > > Regards,
> > > >
> > > > Larry G. Elkins
> > > > The Elkins Organization Inc.
> > > > [EMAIL PROTECTED]
> > > > 214.954.1781
> > > >
> > > > > -Original Message-
> > > > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Behalf Of
> > > > > [EMAIL PROTECTED]
> > > > > Sent: Thursday, October 23, 2003 2:39 PM
> > > > > To: Multiple recipients of list ORACLE-L
> > > > > Subject: Re: index full scan over an index fast full scan in
> > > an analytic
> > > > > function?
> > > > >
> > > > >
> > > > > i cant attach the 10053 trace. it has proprietary info. There
> > > > > isnt much in analytic explain plan either.
> > > > >
> > > > > does anyone know in general why a full scan would

RE: Oracle pricing ain't going down

2003-10-24 Thread Rothouse, Michael
IOT and clustered indexes are not comparable to each other.

-Original Message-
Sent: Friday, October 24, 2003 2:44 PM
To: Multiple recipients of list ORACLE-L


My workplace is going in the same direction as David Mitchell's.  Our
OLTP systems are Oracle, basically everything else is being (or being
considered) migrated to MSSQL2000.

I am not that familiar with SQL Server, but I believe SQL2000 has
sequences. I think MS calls it identity.  I think MS also has IOT, which
they call clustered indexes.  MS might even have function based indexes
with SQL2000, but not very sure.  Anyone care to comment?

Abey.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 11:19 PM


> > -Original Message-
> > From: Ryan [mailto:[EMAIL PROTECTED]
> > Sent: Friday, 24 October 2003 12:44
> > To: Multiple recipients of list ORACLE-L
> > Subject: Re: Oracle pricing ain't going down
> >
> >
> > what is MSEE lacking in?
>
> 
>
> Here's a start.  MSSQLServer EE has ...
>
> No bitmap indexes, no partitioned indexes, no function-based indexes, 
> no
domain indexes, no reverse key indexes, no object tables, no before
triggers (can be kludged, not pretty), no multiple actions per trigger
event, no 3rd-party language support a la Oracle's JVM and pro*...
modules, no built-in OLAP (it's a weird bolt-on), no control over extent
size, no control over block size, no star query optimisation, no
sequences, no synonyms, no packages, no structured exception handling in
stored proc language (TSQL), no MINUS union operator, no multiplexing or
mirroring of log files, no cyclical log management, no escalation-free
locking, no index organised tables.
>
> (Working with both every day, do you get the feeling I've been asked 
> this
before? :-))
>
> Half of those things are available in Oracle SE One :-)
>
> Ciao
> Fuzzy
> :-)
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Grant Allen
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in 
> the message BODY, include a line containing: UNSUB ORACLE-L (or the 
> name of mailing list you want to be removed from).  You may also send 
> the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Abey Joseph
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rothouse, Michael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle pricing ain't going down

2003-10-24 Thread Igor Neyman
"IDENTITY" does not have exactly "SEQUENCE" functionality.
It is a property, you can assign to a column.  And it has "buggy"
implementation, I've seen duplicate values (not sure about the latest
version).  So be careful with this feature.

As for "clustered indexes" - you are correct.  Actually SQL Server
(Sybase) had them before Oracle implemented IOTs.

Igor Neyman, OCP DBA
[EMAIL PROTECTED]



-Original Message-
Abey Joseph
Sent: Friday, October 24, 2003 1:44 PM
To: Multiple recipients of list ORACLE-L

My workplace is going in the same direction as David Mitchell's.  Our
OLTP
systems are Oracle, basically everything else is being (or being
considered)
migrated to MSSQL2000.

I am not that familiar with SQL Server, but I believe SQL2000 has
sequences.
I think MS calls it identity.  I think MS also has IOT, which they call
clustered indexes.  MS might even have function based indexes with
SQL2000,
but not very sure.  Anyone care to comment?

Abey.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 11:19 PM


> > -Original Message-
> > From: Ryan [mailto:[EMAIL PROTECTED]
> > Sent: Friday, 24 October 2003 12:44
> > To: Multiple recipients of list ORACLE-L
> > Subject: Re: Oracle pricing ain't going down
> >
> >
> > what is MSEE lacking in?
>
> 
>
> Here's a start.  MSSQLServer EE has ...
>
> No bitmap indexes, no partitioned indexes, no function-based indexes,
no
domain indexes, no reverse key indexes, no object tables, no before
triggers
(can be kludged, not pretty), no multiple actions per trigger event, no
3rd-party language support a la Oracle's JVM and pro*... modules, no
built-in OLAP (it's a weird bolt-on), no control over extent size, no
control over block size, no star query optimisation, no sequences, no
synonyms, no packages, no structured exception handling in stored proc
language (TSQL), no MINUS union operator, no multiplexing or mirroring
of
log files, no cyclical log management, no escalation-free locking, no
index
organised tables.
>
> (Working with both every day, do you get the feeling I've been asked
this
before? :-))
>
> Half of those things are available in Oracle SE One :-)
>
> Ciao
> Fuzzy
> :-)
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Grant Allen
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Abey Joseph
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Igor Neyman
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: dba interview questions

2003-10-24 Thread Bellow, Bambi
Sysmgr --

You see now how easy it is to weed out the DBAs who are strong in book
knowledge and may have certifications that are not based on real world
experiencee.  Now, I know Mr. M is ok, so I can vouch for him personally;
but, as a general rule, these are not the types of DBAs that you want to
hire.

Best wishes,
Bambi.

-Original Message-
Sent: Friday, October 24, 2003 7:44 AM
To: Multiple recipients of list ORACLE-L


A French or English Swallow?


-Original Message-
Sent: Thursday, October 23, 2003 5:39 PM
To: Multiple recipients of list ORACLE-L


Mladen --

I'm *stunned* you missed the most obvious of all DBA 101 questions...

What is the average air velocity of an unladen swallow?

Bambi.

-Original Message-
Sent: Thursday, October 23, 2003 4:14 PM
To: Multiple recipients of list ORACLE-L


1) What does it mean to grokkk?
2) What is the answer to the question of life, universe and everything?
3) What happened to Sauron when  he flipped the bird to Izildur?
4) What is the monolyth and what was its effect on the resident apes?
5) What is damagement? What color of the database saves memory?
6) What can you tell me about lord Edmund Blackadder?

Chances are that if someone answers those questions correctly, you've  
got yourself a worthy DBA.


On 10/23/2003 04:14:34 PM, system manager wrote:
> Dear List,Can anyone send me a list of dba interview questions?
> 
> Thanks,
> 
> 
> _
> Free email with personality! Over 200 domains!
> http://www.MyOwnEmail.com
> Looking for friendships,romance and more?
> http://www.MyOwnFriends.com
> 
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: system manager
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>

Mladen Gogala
Oracle DBA



Note:
This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information.  No
confidentiality or privilege is waived or lost by any mistransmission.  If
you receive this message in error, please immediately delete it and all
copies of it from your system, destroy any hard copies of it and notify the
sender.  You must not, directly or indirectly, use, disclose, distribute,
print, or copy any part of this message if you are not the intended
recipient. Wang Trading LLC and any of its subsidiaries each reserve the
right to monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender,
except where the message states otherwise and the sender is authorized to
state them to be the views of any such entity.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Mladen Gogala
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Bellow, Bambi
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Mercadante, Thomas F
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB

Re: Re: dba interview questions

2003-10-24 Thread Tanel Poder
I usually tend to ask questions like what has been your worst disaster
scenario and how did you fix it, what other options would you have had and
why didn't you use these etc.. The same with performance tuning issues...

Tanel.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 5:44 PM


> Oh! Well. I have not seen Tom's book yet.
> But still, when the candidate is explaining this stuff to you, there are
plenty of opps to
> question him/her to find out if he/she really knows fundamental things..
> During one phone interview, we could clearly hear the paper shuffle in the
background, while the
> candidate asked us to repeat the question (a couple of times) to 'make
sure' he understood it
> correctly before answering (reading?)it :)
> We stopped phone interview process after this!!
>
> - Kirti
>
> --- [EMAIL PROTECTED] wrote:
> > that question is diagrammed and answered in tom kytes new book. :) im
waiting to get asked it.
> >
> > there is a new ault book out on interview questions. I dont think they
are very tough. I think
> > situational questions are better. Have a development DB set up with
things for the applicant to
> > do.
> >
> > I find that most employers ask the same easy questions. Particularly
developer questions
> > >
> > > From: Kirtikumar Deshpande <[EMAIL PROTECTED]>
> > > Date: 2003/10/24 Fri AM 09:49:26 EDT
> > > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> > > Subject: Re: dba interview questions
> > >
> > > The problem with such lists is that the prospects also have those...
> > > A few years ago Mike Ault published one. We used it to screen
candidates via phone interviews.
> >
> > > Two out of four I talked to gave me perfect answers: word to word from
Mike's list.
> > >
> > > Use Conner's approach: Give the candidate a white/black board, and ask
him/her to draw the SGA
> > > with all it interal structures, all background processes, and explain
how all this works
> > > together.
> > >
> > > - Kirti
> > >
> > >
> > > --- system manager <[EMAIL PROTECTED]> wrote:
> > > > Dear List,Can anyone send me a list of dba interview questions?
> > > >
> > > > Thanks,
> > > >
> > > >
> > > > _
> > > > Free email with personality! Over 200 domains!
> > > > http://www.MyOwnEmail.com
> > > > Looking for friendships,romance and more?
> > > > http://www.MyOwnFriends.com
> > > >
> > > >
> > >
> > > __
> > > Do you Yahoo!?
> > > The New Yahoo! Shopping - with improved product search
> > > http://shopping.yahoo.com
> > > -- 
> > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > -- 
> > > Author: Kirtikumar Deshpande
> > >   INET: [EMAIL PROTECTED]
> > >
> > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > San Diego, California-- Mailing list and web hosting services
> > > -
> > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > (or the name of mailing list you want to be removed from).  You may
> > > also send the HELP command for other information (like subscribing).
> > >
> >
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: <[EMAIL PROTECTED]
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
>
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Kirtikumar Deshpande
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>


-- 
Please see the official ORACLE-L FAQ: http://www.orafa

RE: VPN to database?

2003-10-24 Thread DENNIS WILLIAMS
Todd
   I like your "magical way". Isn't that the goal with all technology
including databases? To the users it just magically works, but we elves down
in the boiler room have to make the magic. If you do a great job they never
know you're there.
   Well with a last name like yours -- hey! Where I used to work a senior
manager was Spanish and his first name was Jesus (pronounced He-sus), and
you never thought about it till you came back from lunch to find a note on
your desk:
  Dennis
  Come see me.
  Jesus

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 


-Original Message-
Sent: Friday, October 24, 2003 5:09 PM
To: Multiple recipients of list ORACLE-L


I don't know.  After hearing the explanation, it very well may be.

Our network guy is out (honeymoon).  And my experience w/ VPN is
slim.  For some reason I never considered it to be "just another
protocol" but rather to be a magical way that I could just
appear to be on the local net to all these machines.

I'll suggest the ssh tunnelling option.  

Todd Boss (sorry, I sometimes get colloquial and just sign my last name)

> 
> Boss
>Is this a firewall issue?
> 
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED] 
> 
> -Original Message-
> Sent: Friday, October 24, 2003 10:45 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> I can tell you right now, i'm VPN'd to a client overseas and have
> NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> to the machine where the Oracle server runs (its Solaris) and work
> via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> version of sql*plus connected to the remote server).
> 
> If there's some secret to making OCI work over VPN, we were not able
> to find it.
> 
> boss
> 
> > 
> > We are an Application Service Provider--we maintain a set of servers in
> > a colocation facility and our customers use our application via the
> > Web.  Security is a paramount concern, of course, and only our Web
> > server has a public IP address, with the application and database
> > servers completely private. 
> > 
> > We supply a number of standard reports, but most of our customers want
> > some custom reports as well.  We would like to give them access to our
> > database, possibly over a VPN, but only if security can be maintained. 
> > I'd like to know if anyone has faced such a situation, and what kind of
> > configuration (network/firewall/VPN/Oracle Net) might make such access
> > possible.
> > 
> > TIA,
> > 
> > 
> > 
> > =
> > Paul Baumgartel
> > Transcentive, Inc.
> > www.transcentive.com
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Paul Baumgartel
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Todd Boss
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Serv

Re: Re[2]: dba interview questions

2003-10-24 Thread Mladen Gogala
Being graphically challenged (my drawings without Visio(TM) or Dia
are on the level of a 3 years old), I resent the idea. If I had to do  
drawing, I would not be a DBA today. That would be small loss for me  
and an enormous one for this list. Did I mention the fact that I'm very
humble and modest?

On 10/24/2003 11:34:26 AM, Jonathan Gennick wrote:
Friday, October 24, 2003, 9:49:26 AM, Kirti wrote:
KD> Use Conner's approach: Give the candidate a white/black board,  
and
ask him/her to draw the SGA
KD> with all it interal structures, all background processes, and
explain how all this works
KD> together.

That's not a half-bad idea. Of possibly more importance than
whether they could draw that diagram perfectly might be
their thought-process as they tried to fill in the pieces
that they don't quite remember.
Best regards,

Jonathan Gennick --- Brighten the corner where you are
http://Gennick.com * 906.387.1698 * mailto:[EMAIL PROTECTED]
Join the Oracle-article list and receive one
article on Oracle technologies per month by
email. To join, visit  
http://four.pairlist.net/mailman/listinfo/oracle-article,

or send email to [EMAIL PROTECTED] and
include the word "subscribe" in either the subject or body.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Jonathan Gennick
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Re: dba interview questions

2003-10-24 Thread Rachel Carmichael
sigh... add to this weekend's reading list Tom's new book (it's sitting
on my dining room table, waiting)


--- [EMAIL PROTECTED] wrote:
> that question is diagrammed and answered in tom kytes new book. :) im
> waiting to get asked it. 
> 
> there is a new ault book out on interview questions. I dont think
> they are very tough. I think situational questions are better. Have a
> development DB set up with things for the applicant to do. 
> 
> I find that most employers ask the same easy questions. Particularly
> developer questions 
> > 
> > From: Kirtikumar Deshpande <[EMAIL PROTECTED]>
> > Date: 2003/10/24 Fri AM 09:49:26 EDT
> > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> > Subject: Re: dba interview questions
> > 
> > The problem with such lists is that the prospects also have
> those...
> > A few years ago Mike Ault published one. We used it to screen
> candidates via phone interviews. 
> > Two out of four I talked to gave me perfect answers: word to word
> from Mike's list. 
> > 
> > Use Conner's approach: Give the candidate a white/black board, and
> ask him/her to draw the SGA
> > with all it interal structures, all background processes, and
> explain how all this works
> > together. 
> > 
> > - Kirti 
> > 
> > 
> > --- system manager <[EMAIL PROTECTED]> wrote:
> > > Dear List,Can anyone send me a list of dba interview
> questions?
> > > 
> > > Thanks,
> > > 
> > > 
> > > _
> > > Free email with personality! Over 200 domains!
> > > http://www.MyOwnEmail.com
> > > Looking for friendships,romance and more?
> > > http://www.MyOwnFriends.com
> > > 
> > > 
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Kirtikumar Deshpande
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting
> services
> >
> -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like
> subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: <[EMAIL PROTECTED]
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).


__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rachel Carmichael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: VPN to database?

2003-10-24 Thread Todd Boss
I don't know.  After hearing the explanation, it very well may be.

Our network guy is out (honeymoon).  And my experience w/ VPN is
slim.  For some reason I never considered it to be "just another
protocol" but rather to be a magical way that I could just
appear to be on the local net to all these machines.

I'll suggest the ssh tunnelling option.  

Todd Boss (sorry, I sometimes get colloquial and just sign my last name)

> 
> Boss
>Is this a firewall issue?
> 
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED] 
> 
> -Original Message-
> Sent: Friday, October 24, 2003 10:45 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> I can tell you right now, i'm VPN'd to a client overseas and have
> NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> to the machine where the Oracle server runs (its Solaris) and work
> via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> version of sql*plus connected to the remote server).
> 
> If there's some secret to making OCI work over VPN, we were not able
> to find it.
> 
> boss
> 
> > 
> > We are an Application Service Provider--we maintain a set of servers in
> > a colocation facility and our customers use our application via the
> > Web.  Security is a paramount concern, of course, and only our Web
> > server has a public IP address, with the application and database
> > servers completely private. 
> > 
> > We supply a number of standard reports, but most of our customers want
> > some custom reports as well.  We would like to give them access to our
> > database, possibly over a VPN, but only if security can be maintained. 
> > I'd like to know if anyone has faced such a situation, and what kind of
> > configuration (network/firewall/VPN/Oracle Net) might make such access
> > possible.
> > 
> > TIA,
> > 
> > 
> > 
> > =
> > Paul Baumgartel
> > Transcentive, Inc.
> > www.transcentive.com
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Paul Baumgartel
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Todd Boss
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: dba interview questions

2003-10-24 Thread Cary Millsap
I've been in the position for over 10 years now in which this was a
candidate algorithm for making decisions. It doesn't work. If you make
decisions this way, you'll ultimately lose your good employees, your
job, or--if it's not stopped--your whole business. It just doesn't work,
because to survive in business you have to be *competitive*.


Cary Millsap
Hotsos Enterprises, Ltd.
http://www.hotsos.com

Upcoming events:
- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
- SQL Optimization 101: 12/8-12 Dallas
- Hotsos Symposium 2004: March 7-10 Dallas
- Visit www.hotsos.com for schedule details...


-Original Message-
Mladen Gogala
Sent: Friday, October 24, 2003 11:40 AM
To: Multiple recipients of list ORACLE-L

Let me continue the story. Around 11PM you want to watch a movie, so  
you decide to pick a few candidates, according to their letterheads,
the overall outlook of the resume , resounding company names that they  
worked for (no matter in what capacity), the school they attended and  
the overall physical appearance, if such information is available.
You also remember that John, the guy you play poker with has intervened
in favor of one of the candidates. The short list of candidates is  
assembled, with your friend's candidate on top. You remember that the
hiring manager owes you a favor and, voila, the fresh DBA is here!

On 10/24/2003 11:54:32 AM, DENNIS WILLIAMS wrote:
> Bill
>So you are an HR person with a well-written job description in  
> hand
> and a
> stack of resumes on the other (how may would you say a job posting
> would
> garner today -- 200?) It has been a long week of major and minor
> employee
> issues and the hiring manager has begun making ugly noises about  
> "when
> am I
> going to see some candidates?". So you stuff the whole stack in your
> briefcase with the illusion of a nice quiet evening to get some
> solitude to
> really go through these resumes. But there are issues with your
> teenage
> daughter and your wife's reaction to these issues, and you glance at
> your
> watch, see it is 9 pm. and realize you meant to go through those
> resumes. So
> you sit down, read the job description once, looks like Greek, read  
> it
> again, no better. Now you pick up the first resume and try to relate
> the
> words on the job description to the candidate's experience. You say  
> to
> yourself, hmm . . this is going to be a long evening.
> 
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
> 
> -Original Message-
> Sent: Friday, October 24, 2003 10:05 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> Mladen Gogala  scribbled on the wall in glitter crayon:
> 
> > Pre-packaged questions are always a bad idea. When a company needs  
> a
> > DBA, it should know what do they need him for. Do they need them to
> 
> but that would provide that the company actually know how to define
> job
> duties and then convey them to HR who would then be able to screen
> applicants on actual experience and not just groups of letters.
> 
> --
> Bill "Shrek" Thater ORACLE DBA
> "I'm going to work my ticket if I can..." -- Gilwell song
> [EMAIL PROTECTED]
>

> One had to cram all this stuff into one's mind for the examinations,
> whether
> one liked it or not. This coercion had such a deterring effect on me
> that,
> after I had passed the final examination, I found the consideration  
> of
> any
> scientific problems distasteful to me for an entire year. - Albert
> Einstein
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Thater, William
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>

Mladen Gogala
Oracle DBA



Note:
This message is for the named p

RE: dba interview questions

2003-10-24 Thread Melanie Caffrey
I'm actually appending to Kirti's answer below here.

Before my students receive a passing grade in my class, they are
required to do exactly what Kirti and Connor have laid out.  They must
each do this as part of their final exam.

Most of them have no difficulty.  When they ask me how they should
prepare for an interview, I've often told them that if they are not
asked to stand up to a white board and lay everything out, they should
offer to.

Most of them do, and oftentimes they get the job, or they are told that
they were one of the top five candidates.

And to also add to Rachel's point, I tell them to carefully listen to
any technical knowledge displayed by their hiring manager (if this is
the person they are interviewing with).

I once interviewed with someone who asked me to solve a potential
problem they were currently having with their database.

He told me they had recently added several indexes to such-and-such
tables for such-and-such application, and it was *still* slow.  I took a
brief look and saw no statistics.  I asked him if he had ever analyzed
his tables or indexes.  He told me they created explain plans all the
time and still could not locate the problem.  I asked him if he was
using the cost-based optimizer.  He informed me that he was not.  He was
in fact using optimizer=CHOOSE  Yeah, you see where this is
going.  I ended up taking a job with a different company.

I tell my students, that even if they are offered a job (and this is
less potent advice in a failing economy) if at all possible, try to work
for a person who is just as, if not more, knowledgeable than you are.
If your boss is a good mentor you have a great potential to grow and
further your knowledge.  And if not, well, you could end up with the
situation above.   

So, for the system manager who originally started this thread, hopefully
you are just as knowledgeable as the candidates you hope to obtain?  Or,
you are forwarding the candidates on to someone who is?

-Original Message-
Rachel Carmichael
Sent: Friday, October 24, 2003 11:10 AM
To: Multiple recipients of list ORACLE-L


wait, the people you interview can read? :)

we've had this discussion off and on on this list over the last few
years.

I've been on interviews where one of the questions was about what
"display" setting I needed to make in order to do an install. This is
Oracle? This is also documented in the install guide. a better question
would have been "what are the steps you take before doing an install?"

Standardized tests have standardized answers. The tests end up published
(or the interviewees publish the questions) and you get OCP.

I ask things like "tell me the thing you've done that you are most proud
of" and "tell me your nightmare situation and how did you recover from
it"

 
--- April Wells <[EMAIL PROTECTED]> wrote:
> 
> That's the inherent problem with using those kinds of lists and books 
> is that both sets of people can read and glean.
> 
> April Wells
> Oracle DBA/Oracle Apps DBA
> Corporate Systems
> Amarillo Texas
>   /\
>  /   \
> / \
> \ /
>   \/
>   >\<
>  \
>  >\<
>  \
> Few people really enjoy the simple pleasure of flying a kite Adam 
> Wells age 11
> 
> 
> 
> -Original Message-
> Sent: Friday, October 24, 2003 8:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those... A

> few years ago Mike Ault published one. We used it to screen candidates

> via phone interviews.
> Two out of four I talked to gave me perfect answers: word to word
> from
> Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask
> him/her to draw the SGA
> with all it interal structures, all background processes, and explain
> how
> all this works
> together. 
> 
> - Kirti
> 
> 
> --- system manager <[EMAIL PROTECTED]> wrote:
> > Dear List,Can anyone send me a list of dba interview questions?
> > 
> > Thanks,
> > 
> > 
> > _
> > Free email with personality! Over 200 domains! 
> > http://www.MyOwnEmail.com Looking for friendships,romance and more?
> > http://www.MyOwnFriends.com
> > 
> > 
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search 
> http://shopping.yahoo.com
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Kirtikumar Deshpande
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in 
> the message BODY, include a line containing: UNSUB ORACLE-L (or the 
> name of mailing list you want to be removed from).  You may also send 
> the HE

RE: Solar flares

2003-10-24 Thread Jesse, Rich
The pics from SOHO http://sohowww.nascom.nasa.gov/data/realtime-update.html
are impressive.

And http://www.noaa.com is staying on top of it, too.

For those of us on call this weekend, drink your beers fast!


Rich

Rich Jesse   System/Database Administrator
[EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA


> -Original Message-
> From: Mladen Gogala [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 24, 2003 3:50 PM
> To: Multiple recipients of list ORACLE-L
> Subject: Solar flares
> 
> 
> CNN just reported that the Earth has been hit by solar flares.
> As everybody knows, solar flares can disrupt electronics, (unless it  
> runs windows, in which case it has already been severely disrupted).
> So, here is a little piece from Mr. Simon Trevaglia in which solar
> flares feature prominently:
> 
> http://bofh.ntk.net/Bastard2.html
> 
> Mladen Gogala
> Oracle DBA
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jesse, Rich
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re[2]: dba interview questions

2003-10-24 Thread Jonathan Gennick
Friday, October 24, 2003, 9:49:26 AM, Kirti wrote:
KD> Use Conner's approach: Give the candidate a white/black board, and ask him/her to 
draw the SGA
KD> with all it interal structures, all background processes, and explain how all this 
works
KD> together.

That's not a half-bad idea. Of possibly more importance than
whether they could draw that diagram perfectly might be
their thought-process as they tried to fill in the pieces
that they don't quite remember.

Best regards,

Jonathan Gennick --- Brighten the corner where you are
http://Gennick.com * 906.387.1698 * mailto:[EMAIL PROTECTED]

Join the Oracle-article list and receive one
article on Oracle technologies per month by 
email. To join, visit http://four.pairlist.net/mailman/listinfo/oracle-article, 
or send email to [EMAIL PROTECTED] and 
include the word "subscribe" in either the subject or body.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jonathan Gennick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Two ODBC problems

2003-10-24 Thread DENNIS WILLIAMS
Patrice - When I've had ODBC problems, only one solution has worked for me:
Find another ODBC driver. I've had better luck recently with the Microsoft
drivers.

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 2:09 PM
To: Multiple recipients of list ORACLE-L


1st problem

One of our clients' PCs which are still running Access97 can't connect to
Oracle 8i via ODBC drive 8.00.61.00.  This is the first ODBC driver for
Oracle 8.0.6, it is known to be buggy.  We cannot upgrade the ODBC drivers
on all the clients though, that is done by another group.

The user can invoke the Data Source, and see a list of the objects
presumably available to connect, but as soon as one of them is selected ODBC
fails.

The developers suspect suspect it could be because of the sheer number of
objects in the database, esp. the number of java classes:  There are 9974
java classes in the SYS schema.  Total objects count is 38640.

Our production db doesn't have as many, 6442 java classes only.  That brings
our total number of objects to a mere 35845.  The client PC can connect to
this one using Access97 and the 8.00.61.00 ODBC driver.

The developers tell me they confirmed that they also cannot connect with
this driver using Access2000.  We know it's the driver.

I already know that one can get around this problem by creating an
ALL_OBJECTS view in the user account's schema, to mask the java classes from
the listing, but the idea of replacing data dictionary views manually in
people's schemas is leaving some people here a bit uncomfortable.

Is there a way to weed through the java classes, and remove the ones that
are never used from the database?  (I am throwing that in as a lark)  Is
there a data dictionary view that helps manage Java components like there
are for PL/SQL stored objects?  If Java is in the database, presumably it's
possible to see how the java objects are used, where they are, etc. from the
data dictionary?  A last access time would be a nice feature.


2nd problem

The current Microsoft driver for Oracle can connect to both databases.

We had another problem with Access97 using the ODBC driver that comes with
Office97.  Access97 doesn't see the prefix to table names, including those
belonging to public.  Because of that, in the list we can end up with
duplicates and Access panics when it sees that not all items listed are
unique.  It becomes so hysterical that users can't even tell it to calm down
and point it to an item in the list.

Oracle Support confirmed for me that the problem doesn't exist on
Access2000, they suggested I upgrade since Microsoft doesn't support
Access97 anymore.

We can't upgrade Access before June 2004, there are so many PCs to upgrade
that this individual's PC won't get upgraded before then.

Patrice.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Boivin, Patrice J
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: VPN to database?

2003-10-24 Thread DENNIS WILLIAMS
Paul - We have some of the similar issues here (network/firewall/VPN/Oracle
Net). Based on your description of your business, you probably have some
competent network engineers on staff. My experience is that they routinely
handle issues like this, and you probably won't need to get involved in the
actual configuration. However, you should educate yourself in the security
issues involved so you can participate intelligently in any discussions from
the database point of view. As a starter, I am including two recent
excellent postings to this list from Tim Gorman and Ian MacGregor. Just
scroll down.

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

Sent: Thursday, August 07, 2003 10:25 AM
To: Multiple recipients of list ORACLE-L


Sandro,

There is an excellent book on "Oracle Security" available online from
"http://www.sans.org";.  Concise, organized, and prioritized.  Also, Newman
and Theriault's "Oracle Security Handbook" from Oracle Press is chock full
of common sense...

Not sure what the question about "automating the migration of stored
procedures" refers to.  Could you provide more information?  I don't think I
understand the problem...

Storing password files on the database server is mainly an exercise in
ensuring that OS security and file permissions properly implemented.  If you
cannot ensure that OS files are properly secured, then the entire Oracle
database is at risk, not to mention files containing clear-text passwords.
After all, one can view data within datafiles using programs other than the
Oracle RDBMS...

The idea of creating production schemas/logins to separate object ownership
from application/end-user access is excellent.  To avoid using synonyms,
consider the functionality of the "ALTER SESSION SET CURRENT_SCHEMA =
" command being executed in an AFTER LOGON trigger in all
accounts used for end-user access.  It is a little-known but wonderfully
manageable bit of functionality...

Hope this helps...

-Tim
-Original Message-
Sent: Wednesday, October 01, 2003 5:19 PM
To: Multiple recipients of list ORACLE-L


Our security folks just sent me this.

Ian MacGregor
Stanford Linear Accelerator Center
[EMAIL PROTECTED] 

-Original Message-
Sent: Tuesday, September 30, 2003 1:35 PM
To: [EMAIL PROTECTED]


I've posted the presentation I gave at OracleWorld last month. This
presentation covers writing secure code in Oracle databases and Oracle
Application Server. The topics covered include:

Managing state
Query parameters
Hidden fields
Cookies
Cross-site scripting
SQL Injection
PL/SQL Injection
Buffer overflows in EXTPROC
Resources

You can download the presentation at
http://www.appsecinc.com/techdocs/presentations.html under the heading
"Writing Secure Code in Oracle Presentation".

I welcome comments and criticisms.

Regards,
Aaron
___
Aaron C. Newman
CTO/Founder
Application Security, Inc.
www.appsecinc.com
Phone: 212-420-9270
Fax: 212-420-9680
- Securing Business by Securing Enterprise Applications -


Sent: Friday, October 24, 2003 10:14 AM
To: Multiple recipients of list ORACLE-L


We are an Application Service Provider--we maintain a set of servers in
a colocation facility and our customers use our application via the
Web.  Security is a paramount concern, of course, and only our Web
server has a public IP address, with the application and database
servers completely private. 

We supply a number of standard reports, but most of our customers want
some custom reports as well.  We would like to give them access to our
database, possibly over a VPN, but only if security can be maintained. 
I'd like to know if anyone has faced such a situation, and what kind of
configuration (network/firewall/VPN/Oracle Net) might make such access
possible.

TIA,



=
Paul Baumgartel
Transcentive, Inc.
www.transcentive.com

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Paul Baumgartel
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing 

RE: Hints in microstrategy

2003-10-24 Thread Rognes, Sten

Chris Lawson has a couple of papers on Oracle/Microstrategy tuning on his
website. (http://www.oraclemagician.com) You might find what you're looking
for there.

Sten


-Original Message-
Sent: Friday, October 24, 2003 1:49 PM
To: Multiple recipients of list ORACLE-L


Hi .

We are using microstrategy v7 (I think) as a reporting
tool. I'm trying to find a way to add an /*+ append */
hint to the insert commands generated by it. So far
the only way the developers have been able to do it
was insert into table T1 /*+ append */. This doesn't
really help to reduce the amount of the redo. Does
anyone know how to make microstrategy to make it 
insert /*+ append */ into table T1 instead?

thanks

Gene

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Olga Gurevich
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rognes, Sten
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: VPN to database?

2003-10-24 Thread Goulet, Dick
Jared,

I'm no network guru, so take this with a ton of salt, but this is how I 
believe our network admin has it setup.  The VPN tunnel comes in thru the outer 
firewall on a specific port to the vpn server in the DMZ.  The vpn server then spreads 
the ports out as needed to the inner firewall which opens up all ports on the inside 
to that one server/ip address.  Therefore from the applications point of view the 
inside of the firewall looks the same whether your connected directly on the local lan 
or coming in via VPN.  And if it's that simple, I'm going to be greatly suprised.  But 
I will point out that if the vpn security stuff is not set up just right or gets 
disturbed the whole thing shuts down better than a clam.

Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 5:14 PM
To: Multiple recipients of list ORACLE-L


You're going through a firewall that allows port 22 to go
through and connect to your ssh daemon via the VPN.

Port 15xx is likely being blocked, as well as the range
of ports used to create the sqlnet connections.

I'm not a security guru, but I doubt that the firewall admins
are opening all the ports just because you're connecting
via VPN.  

I also connect through a VPN, but the only ways I know of
to connect from my local apps to a database behind the firewall
is to open up some ports ( probably won't fly ) or tunnel
the sqlnet in via ssh.

Jared


On Fri, 2003-10-24 at 13:19, Todd Boss wrote:
> No, but (and forgive me for asking) why does that matter?
> 
> Is sqlnet tunneling important for security reasons, or important
> for connectivity?  I'm able to telnet to the box straight away.
> 
> I figured that, once VPN was connected, I'd be able to run whatever
> applications I wanted locally.  After not being able to get
> any Oracle client to connect, i wondered if VPN had the capability
> to transmit anything but the "lowest" level of tcp/ip protocols.
> 
> boss
> 
> > 
> > 
> > Are you tunneling sqlnet through ssh?
> > 
> > http://www.akadia.com/services/ssh_install_and_use.html
> > 
> > On Fri, 2003-10-24 at 08:44, Todd Boss wrote:
> > > I can tell you right now, i'm VPN'd to a client overseas and have
> > > NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> > > to the machine where the Oracle server runs (its Solaris) and work
> > > via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> > > version of sql*plus connected to the remote server).
> > > 
> > > If there's some secret to making OCI work over VPN, we were not able
> > > to find it.
> > > 
> > > boss
> > > 
> > > > 
> > > > We are an Application Service Provider--we maintain a set of servers in
> > > > a colocation facility and our customers use our application via the
> > > > Web.  Security is a paramount concern, of course, and only our Web
> > > > server has a public IP address, with the application and database
> > > > servers completely private. 
> > > > 
> > > > We supply a number of standard reports, but most of our customers want
> > > > some custom reports as well.  We would like to give them access to our
> > > > database, possibly over a VPN, but only if security can be maintained. 
> > > > I'd like to know if anyone has faced such a situation, and what kind of
> > > > configuration (network/firewall/VPN/Oracle Net) might make such access
> > > > possible.
> > > > 
> > > > TIA,
> > > > 
> > > > 
> > > > 
> > > > =
> > > > Paul Baumgartel
> > > > Transcentive, Inc.
> > > > www.transcentive.com
> > > > 
> > > > __
> > > > Do you Yahoo!?
> > > > The New Yahoo! Shopping - with improved product search
> > > > http://shopping.yahoo.com
> > > > -- 
> > > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > > -- 
> > > > Author: Paul Baumgartel
> > > >   INET: [EMAIL PROTECTED]
> > > > 
> > > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > > San Diego, California-- Mailing list and web hosting services
> > > > -
> > > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > > (or the name of mailing list you want to be removed from).  You may
> > > > also send the HELP command for other information (like subscribing).
> > > > 
> > > 
> > > -- 
> > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > -- 
> > > Author: Todd Boss
> > >   INET: [EMAIL PROTECTED]
> > > 
> > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > San Diego, California-- Mailing list and web hosting services
> > > -
> > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > to: [EMAIL PROTECTED] (note

Re: VPN to database?

2003-10-24 Thread Jared Still
You're going through a firewall that allows port 22 to go
through and connect to your ssh daemon via the VPN.

Port 15xx is likely being blocked, as well as the range
of ports used to create the sqlnet connections.

I'm not a security guru, but I doubt that the firewall admins
are opening all the ports just because you're connecting
via VPN.  

I also connect through a VPN, but the only ways I know of
to connect from my local apps to a database behind the firewall
is to open up some ports ( probably won't fly ) or tunnel
the sqlnet in via ssh.

Jared


On Fri, 2003-10-24 at 13:19, Todd Boss wrote:
> No, but (and forgive me for asking) why does that matter?
> 
> Is sqlnet tunneling important for security reasons, or important
> for connectivity?  I'm able to telnet to the box straight away.
> 
> I figured that, once VPN was connected, I'd be able to run whatever
> applications I wanted locally.  After not being able to get
> any Oracle client to connect, i wondered if VPN had the capability
> to transmit anything but the "lowest" level of tcp/ip protocols.
> 
> boss
> 
> > 
> > 
> > Are you tunneling sqlnet through ssh?
> > 
> > http://www.akadia.com/services/ssh_install_and_use.html
> > 
> > On Fri, 2003-10-24 at 08:44, Todd Boss wrote:
> > > I can tell you right now, i'm VPN'd to a client overseas and have
> > > NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> > > to the machine where the Oracle server runs (its Solaris) and work
> > > via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> > > version of sql*plus connected to the remote server).
> > > 
> > > If there's some secret to making OCI work over VPN, we were not able
> > > to find it.
> > > 
> > > boss
> > > 
> > > > 
> > > > We are an Application Service Provider--we maintain a set of servers in
> > > > a colocation facility and our customers use our application via the
> > > > Web.  Security is a paramount concern, of course, and only our Web
> > > > server has a public IP address, with the application and database
> > > > servers completely private. 
> > > > 
> > > > We supply a number of standard reports, but most of our customers want
> > > > some custom reports as well.  We would like to give them access to our
> > > > database, possibly over a VPN, but only if security can be maintained. 
> > > > I'd like to know if anyone has faced such a situation, and what kind of
> > > > configuration (network/firewall/VPN/Oracle Net) might make such access
> > > > possible.
> > > > 
> > > > TIA,
> > > > 
> > > > 
> > > > 
> > > > =
> > > > Paul Baumgartel
> > > > Transcentive, Inc.
> > > > www.transcentive.com
> > > > 
> > > > __
> > > > Do you Yahoo!?
> > > > The New Yahoo! Shopping - with improved product search
> > > > http://shopping.yahoo.com
> > > > -- 
> > > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > > -- 
> > > > Author: Paul Baumgartel
> > > >   INET: [EMAIL PROTECTED]
> > > > 
> > > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > > San Diego, California-- Mailing list and web hosting services
> > > > -
> > > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > > (or the name of mailing list you want to be removed from).  You may
> > > > also send the HELP command for other information (like subscribing).
> > > > 
> > > 
> > > -- 
> > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > -- 
> > > Author: Todd Boss
> > >   INET: [EMAIL PROTECTED]
> > > 
> > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > San Diego, California-- Mailing list and web hosting services
> > > -
> > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > (or the name of mailing list you want to be removed from).  You may
> > > also send the HELP command for other information (like subscribing).
> > 
> > 
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Jared Still
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also s

DR Planning

2003-10-24 Thread Shelly Butterfield
Gurus,
We have a Clustered enviornment with a commomn storage array (which holds the database).  Recently our storage array is having problems and for some odd reason takes the entire system down includingthe database.  Not sure what is going on.
 
The vendor has brought the system up temporarily until they figure it out but on our endWe are trying to come up with a solution so that we can fail-over to another machine if the system goes down next time.  
We do have another srever (which is not clustered and is not as powerful), which wethink we can use it as a hot standby.  Is it possible to mix Hot Standby with clustered? I am having problem seperating Cluster switchover from Primary to Secondary node switchover.
What are your experiences or suggestions if any?
TIA
Shelly
 This is going to be a great day!!!
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Hints in microstrategy

2003-10-24 Thread Olga Gurevich
Hi .

We are using microstrategy v7 (I think) as a reporting
tool. I'm trying to find a way to add an /*+ append */
hint to the insert commands generated by it. So far
the only way the developers have been able to do it
was insert into table T1 /*+ append */. This doesn't
really help to reduce the amount of the redo. Does
anyone know how to make microstrategy to make it 
insert /*+ append */ into table T1 instead?

thanks

Gene

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Olga Gurevich
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Solar flares

2003-10-24 Thread Mladen Gogala
CNN just reported that the Earth has been hit by solar flares.
As everybody knows, solar flares can disrupt electronics, (unless it  
runs windows, in which case it has already been severely disrupted).
So, here is a little piece from Mr. Simon Trevaglia in which solar
flares feature prominently:

http://bofh.ntk.net/Bastard2.html

Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: full recovery

2003-10-24 Thread DENNIS WILLIAMS
AK
   Since extracting the controlfile from your backup seems to be your major
issue, perhaps someone on this list that mastered that issue will reply --
how about it? You could also Google for Oracle-L and RMAN, you might find
where they posted it.
   8i? Check Appendix C of Freeman's book. The man thinks of everything.

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 2:34 PM
To: Multiple recipients of list ORACLE-L


More Info :
OS : HP-UX   oracle :8.1.7.4.

Dennis ,
We are using controlfile and not recov catalog. Now Since I am on 8.1.7.4 ,
no different then you. If I dont have a explicit control file backup then
finding SNCF ( snapshot control file ) is another way . Since we have a file
system backup which any way takes whole backup of file system , it should
have SNCF included in it , BUT that file system backup runs before rman
backup . ( I am not the one who did all this .. just looking at some one
els's work ).
Yes,  I can restore  to same path , so no problem with renaming files in
rman restore.

oyaa i do have free(man)'s guide but that's for 9i .

Thanks,
-ak



- Original Message - 
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 11:15 AM


> AK - This sounds like a disaster recovery test. Be sure to buy Robert
> Freeman's Oracle9i RMAN Backup & Recovery if you don't have it already. I
am
> on 8.1.6, and had difficulty extracting the control file from the backup
> (others on this list have done it, this is better on 9i). So I just
> "cheated" by backing that up after the RMAN backup and restoring it first.
> That way I can start RMAN and execute a STARTUP MOUNT. You don't say so
> explicitly, but I'm guessing you're using the control file to run RMAN. I
> never figured out how to pull the RMAN backup files from a location other
> than their original path, but fortunately with Unix it is easy to create a
> link. Can you restore the data files to their original path?
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> From: AK [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 24, 2003 1:15 PM
> To: Multiple recipients of list ORACLE-L
> Subject: full recovery
>
>
> Here is a scenerio :
> I am taking full database backup everynight using rman to tape . which
> includes archive logs and control file. Not using catalog.Also have a
backup
> of complete file system including oracle software and configuration files
(
> init.ora , listener.ora etc.. )
> I lost the host on a particular day at 12 am afternoon. Now I want to
> restore this db to latest possible time to another host ( with same name )
> .
> what are steps I need to do .
>
> 1. restore oracle software from tape.
> 2. restore config files ( init.ora , listener. ora ).
> 3. startup instance with nomount.
> 4. (  here I get confused , since I dont have latest control file ,
what
> are implication , and what should I do )
> 5. connect to rman
> 6. run ( set until ...; restore db ;  recover db ; )
>
> Thanks,
> -ak
>
>
>
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: how is it possible

2003-10-24 Thread Ron Thomas

I see this from time to time on our HP systems.  The terminal emulator on the client 
gets out of
sync with the host, especially in regards to CTL-H and the Backspace key.  I've seen 
this caused by
applications that set the emulator into raw mode (Oracle Applications 10.7 character) 
and then back
as well as su - user ... exit.

That CTL-H trick embedded in a filename is how I test our Jr admins.  Yes... I can be 
a tad evil at
times...

Ron Thomas
Hypercom, Inc
[EMAIL PROTECTED]
Each new user of a new system uncovers a new class of bugs. -- Kernighan


   
   
  [EMAIL PROTECTED]
   
  com  To:   [EMAIL PROTECTED] 

  Sent by: cc: 
   
  [EMAIL PROTECTED]Subject:  Re: how is it possible
   
  .com 
   
   
   
   
   
  10/24/2003 10:24 
   
  AM   
   
  Please respond to
   
  ORACLE-L 
   
   
   
   
   




Thanks Ron ,
This worked . But do you know why it happens . As I said its happening third
time with me . My unix screen behaves weired sometimes it doesn't print any
character I type and some time it prints characters which I never type ( in
this particular case ).

Thanks,
-ak

- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 5:04 PM


>
> This generally happens when there is a CTL-H embedded in the filename.
Try
>
> mv *m* anotherfilename
>
> You should be able to get at it after that.
>
> Ron Thomas
> Hypercom, Inc
> [EMAIL PROTECTED]
> Each new user of a new system uncovers a new class of bugs. -- Kernighan
>
>
>
>   [EMAIL PROTECTED]
>   com  To:
[EMAIL PROTECTED]
>   Sent by: cc:
>   [EMAIL PROTECTED]Subject:  how is it
possible
>   .com
>
>
>   10/23/2003 04:49
>   PM
>   Please respond to
>   ORACLE-L
>
>
>
>
>
>
> This happening with me 3 rd time on this hp box . When I do ls -alt I can
see a file in current
> directory but when I try to open it (vi/cat ) it says no such file or
directory .  I am same user
> who created the file .. ( no permission problem )
>
> Any idea ??
>
> -ak
>
>
>
>
>
> /home/ak/myscripts/shell_scr $ ls -alt
> total 4
> drwxrwxrwx   2 ak   dba 96 Oct 23 14:40 .
> -rwxrwxrwx   1 ak   dba412 Oct 23 14:40 mon_scr
> drwxr-x---  10 ak   dba   1024 Oct 13 16:07 ..
>
>  /home/ak/myscripts/shell_scr $ cat mon_scr
> cat: Cannot open mon_scr: No such file or directory
>
>  /home/ak/myscripts/shell_scr $ cat ./mon_scr
> cat: Cannot open ./mon_scr: No such file or directory
>
> /home/ak/myscripts/shell_scr $
>
> /home/ak/shell_scr $ whoami
> ak
>
>
>
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Ron Thomas
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL P

Metalink error

2003-10-24 Thread Boivin, Patrice J
I tried to log a TAR, got this:

MetaLink V2 - Error Message 
 UNEXERR 

That's all.

It's not possible to log a TAR about Metalink...

Patrice.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Boivin, Patrice J
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: VPN to database?

2003-10-24 Thread Todd Boss
No, but (and forgive me for asking) why does that matter?

Is sqlnet tunneling important for security reasons, or important
for connectivity?  I'm able to telnet to the box straight away.

I figured that, once VPN was connected, I'd be able to run whatever
applications I wanted locally.  After not being able to get
any Oracle client to connect, i wondered if VPN had the capability
to transmit anything but the "lowest" level of tcp/ip protocols.

boss

> 
> 
> Are you tunneling sqlnet through ssh?
> 
> http://www.akadia.com/services/ssh_install_and_use.html
> 
> On Fri, 2003-10-24 at 08:44, Todd Boss wrote:
> > I can tell you right now, i'm VPN'd to a client overseas and have
> > NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> > to the machine where the Oracle server runs (its Solaris) and work
> > via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> > version of sql*plus connected to the remote server).
> > 
> > If there's some secret to making OCI work over VPN, we were not able
> > to find it.
> > 
> > boss
> > 
> > > 
> > > We are an Application Service Provider--we maintain a set of servers in
> > > a colocation facility and our customers use our application via the
> > > Web.  Security is a paramount concern, of course, and only our Web
> > > server has a public IP address, with the application and database
> > > servers completely private. 
> > > 
> > > We supply a number of standard reports, but most of our customers want
> > > some custom reports as well.  We would like to give them access to our
> > > database, possibly over a VPN, but only if security can be maintained. 
> > > I'd like to know if anyone has faced such a situation, and what kind of
> > > configuration (network/firewall/VPN/Oracle Net) might make such access
> > > possible.
> > > 
> > > TIA,
> > > 
> > > 
> > > 
> > > =
> > > Paul Baumgartel
> > > Transcentive, Inc.
> > > www.transcentive.com
> > > 
> > > __
> > > Do you Yahoo!?
> > > The New Yahoo! Shopping - with improved product search
> > > http://shopping.yahoo.com
> > > -- 
> > > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > > -- 
> > > Author: Paul Baumgartel
> > >   INET: [EMAIL PROTECTED]
> > > 
> > > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > > San Diego, California-- Mailing list and web hosting services
> > > -
> > > To REMOVE yourself from this mailing list, send an E-Mail message
> > > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > > the message BODY, include a line containing: UNSUB ORACLE-L
> > > (or the name of mailing list you want to be removed from).  You may
> > > also send the HELP command for other information (like subscribing).
> > > 
> > 
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Todd Boss
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jared Still
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: how to specify tablespace in Designer

2003-10-24 Thread Ben
Hats off and thanks to all for the great responses. I am well
on my way now. This Designer beast is quite amazing.

Ben

-Original Message-
Sent: October 23, 2003 2:02 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'


Ben,

You need to implement the table to assign storage attributes to it.  This
can be done either in the Ron or Db Designer where you are at.

In Db Designer/DbAdmin tab, expand the database|Users|spcific
User|Schema|Table Implementations entry.  Click the green plus to implement
a table in this area, and you should see the properties attribute pop up.
Optionally right click on the Table Implementations selection and select
"Create Table Implementations".

Good Luck!

Tom Mercadante
Oracle Certified Professional


-Original Message-
Sent: Thursday, October 23, 2003 2:45 PM
To: Multiple recipients of list ORACLE-L


Hi

Can someone who has used Designer to generate DDL let
me know how you specify which tablespace a table or index
is to be created in. I am using the Design Editor and
the DBAdmin tab and can't seem to find it. 
Thanks in advance.

Ben
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ben
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ben
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: full recovery

2003-10-24 Thread Joe Testa
1.  Get a beer.
2.  Tell damagement to go away and you'll call them when its done.
3.  Get out Robert Freeman's book on RMAN, you do have that right and 
its all worn out from being dogeared and spilling beer on it, RIGHT?
4.  restore the controlfile manually from the backup, you may have to 
figure out the piece name based on your tape management logs/repository.
5.  once the controlfile is restored, mount, and restore the rest of the 
database.  Restoring a controlfile without a repository is the hardest 
thing you'll ever have to do with RMAN, been there done that in a 
production environment when darn near everything was lost.

Joe

AK wrote:

Here is a scenerio :
I am taking full database backup everynight using rman to tape . which 
includes archive logs and control file. Not using catalog.Also have a 
backup of complete file system including oracle software and 
configuration files ( init.ora , listener.ora etc.. )
I lost the host on a particular day at 12 am afternoon. Now I want to 
restore this db to latest possible time to another host ( with same 
name )  .
what are steps I need to do .
 
1. restore oracle software from tape.
2. restore config files ( init.ora , listener. ora ).
3. startup instance with nomount.
4. (  here I get confused , since I dont have latest control file 
, what are implication , and what should I do )
5. connect to rman
6. run ( set until ...; restore db ;  recover db ; )
 
Thanks,
-ak
 
 


--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Joe Testa
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: dba interview questions

2003-10-24 Thread Cary Millsap
Indeed. We all have our "thing" that we like to focus on. When I hire
someone, I'm more interested in the "program" running in someone's head
than I am in the "data segment" that's stored in there.

The far-and-away best interviewing material I've ever seen is the
"Effective Interviewing!" stuff written by Jim Kennedy and Anna Everest,
which you can read about at http://www.interviewedge.com/. 


Cary Millsap
Hotsos Enterprises, Ltd.
http://www.hotsos.com

Upcoming events:
- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
- SQL Optimization 101: 12/8-12 Dallas
- Hotsos Symposium 2004: March 7-10 Dallas
- Visit www.hotsos.com for schedule details...


-Original Message-
KENNETH JANUSZ
Sent: Friday, October 24, 2003 10:09 AM
To: Multiple recipients of list ORACLE-L

I have had a couple of interviews for Oracle DBA jobs where they pull
out a
list of technical questions about the most minor items you can think of.
Being able to answer them indicates how good a person's grey brain cells
are
at memorizing trivia.  They do not measure a persons ability to problem
solve which is a skill that I think a company would be interested in
when
hiring a DBA!

My $0.02 worth,

Ken Janusz, CPIM


- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 9:39 AM


> Pre-packaged questions are always a bad idea. When a company needs a
> DBA, it should know what do they need him for. Do they need them to
> monitor and troubleshoot production database and ensure the
> availability of the database, or help developers, or lead the database
> related projects or to help clients and install software or mop the
> floors and grind coffee? The abbreviation "DBA" can be applied to the
> great variety of business roles, some of which are mutually exclusive.
> Cary Millsap is using terms "performance analyst" and "performance
> related projects". Traditionally, companies do not have "performance
> analysts", they have DBA's performing this function. The abbreviation
> "DBA" came to mean almos anything short of "performing brain surgery".
> To make a long story short, the company looking for a DBA should know
> what specific job functions are they interested in, what specific
> skills are needed to perform the required job functions and adjust the
> the interviewing process. For instance, if you need a DBA to go and
> help your clients, then driver's license would be a requirement.
Sounds
> trivial, but I know a lot of folks from NYC that don't drive and don't
> have driver's license. Generally speaking, driver's license is not a
> requirement for the DBA position, but sometimes, it can be.
>
> On 10/24/2003 09:49:26 AM, Kirtikumar Deshpande wrote:
> > The problem with such lists is that the prospects also have those...
> > A few years ago Mike Ault published one. We used it to screen
> > candidates via phone interviews.
> > Two out of four I talked to gave me perfect answers: word to word
> > from
> > Mike's list.
> >
> > Use Conner's approach: Give the candidate a white/black board, and
> > ask
> > him/her to draw the SGA
> > with all it interal structures, all background processes, and
explain
> > how all this works
> > together.
> >
> > - Kirti
> >
> >
> > --- system manager <[EMAIL PROTECTED]> wrote:
> > > Dear List,Can anyone send me a list of dba interview
questions?
> > >
> > > Thanks,
> > >
> > >
> > > _
> > > Free email with personality! Over 200 domains!
> > > http://www.MyOwnEmail.com
> > > Looking for friendships,romance and more?
> > > http://www.MyOwnFriends.com
> > >
> > >
> >
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > --
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > --
> > Author: Kirtikumar Deshpande
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting
services
> >
-
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> >
>
> Mladen Gogala
> Oracle DBA
>
>
>
> Note:
> This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information.  No
confidentiality or privilege is waived or lost by any mistransmission.
If
you receive this message in error, please immediately delete it and all
copies of it from your system, destroy any hard copies of it and notify
the
sender.  You must not, directly or indirectly, use, disclose,
distribute,
print

RE: Re: dba interview questions

2003-10-24 Thread April Wells
Title: RE: Re: dba interview questions





and at least if someone takes the time to read a book and get the whole picture, they have some kind of gumshun.


April Wells
Oracle DBA/Oracle Apps DBA
Corporate Systems
Amarillo Texas
  /\
 /   \
/ \
\ /
  \/
  >\<
 \
 >\<
 \
Few people really enjoy the simple pleasure of flying a kite
Adam Wells age 11




-Original Message-
From: Kirtikumar Deshpande [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 24, 2003 9:44 AM
To: Multiple recipients of list ORACLE-L
Subject: Re: Re: dba interview questions



Oh! Well. I have not seen Tom's book yet. 
But still, when the candidate is explaining this stuff to you, there are plenty of opps to
question him/her to find out if he/she really knows fundamental things..
During one phone interview, we could clearly hear the paper shuffle in the background, while the
candidate asked us to repeat the question (a couple of times) to 'make sure' he understood it
correctly before answering (reading?)it :) 
We stopped phone interview process after this!! 


- Kirti


--- [EMAIL PROTECTED] wrote:
> that question is diagrammed and answered in tom kytes new book. :) im waiting to get asked it. 
> 
> there is a new ault book out on interview questions. I dont think they are very tough. I think
> situational questions are better. Have a development DB set up with things for the applicant to
> do. 
> 
> I find that most employers ask the same easy questions. Particularly developer questions 
> > 
> > From: Kirtikumar Deshpande <[EMAIL PROTECTED]>
> > Date: 2003/10/24 Fri AM 09:49:26 EDT
> > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> > Subject: Re: dba interview questions
> > 
> > The problem with such lists is that the prospects also have those...
> > A few years ago Mike Ault published one. We used it to screen candidates via phone interviews.
> 
> > Two out of four I talked to gave me perfect answers: word to word from Mike's list. 
> > 
> > Use Conner's approach: Give the candidate a white/black board, and ask him/her to draw the SGA
> > with all it interal structures, all background processes, and explain how all this works
> > together. 
> > 
> > - Kirti 
> > 
> > 
> > --- system manager <[EMAIL PROTECTED]> wrote:
> > > Dear List,    Can anyone send me a list of dba interview questions?
> > > 
> > > Thanks,
> > > 
> > > 
> > > _
> > > Free email with personality! Over 200 domains!
> > > http://www.MyOwnEmail.com
> > > Looking for friendships,romance and more?
> > > http://www.MyOwnFriends.com
> > > 
> > > 
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Kirtikumar Deshpande
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
> > San Diego, California    -- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: <[EMAIL PROTECTED]
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
> San Diego, California    -- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).



__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Kirtikumar Deshpande
  INET: [EMAIL PROTECTED]


Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California    -- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



The info

RE: RE: dba interview questions

2003-10-24 Thread Goulet, Dick
Heck,  Our helpdesk doesn't even reset passwords!!

Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 3:04 PM
To: Multiple recipients of list ORACLE-L


I would have answered:

 I'd send the list to the help desk as they take care of logins
and tell them to lock all accounts except the list I send.

What is it you say?? your help desk doesn't do that? Tsk, tsk, tsk...

hehehe



-Original Message-
Sent: Friday, October 24, 2003 1:00 PM
To: Multiple recipients of list ORACLE-L


Sure do, here's my favorite:

You have a database with 3000 registered users, you need to lock all
accounts except for a list of 20.  How would you do it?

Obviously there's several correct answers.  But the one I'm looking for is
the "anonymous PL/SQL block" defined like:

declare 
stmt varchar2(200);
begin
for a in (select username from dba_users
  where username not in ('SYS','SYSTEM',...)) loop
stmt := 'alter user '||a.username||' account lock';
execute immediate stmt;
end loop;
end;
/


Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 12:00 PM
To: Multiple recipients of list ORACLE-L


do any of you ask dbas pl/sql questions? I think its important for DBAs to
be good developers as well. especially if they are part of a development
team. I dont think the skill sets should be seperate. they overlap. 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask
them to defend it. Small issues like "Why would/wouldn't an index help?"
etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in
last 3 months outside of Oracle manuals?" or "Do you know any other sites
that give you lot of oracle related information?" I expect to hear at-least
couple form following list ... ixora, hotsos, jlcomp, oracle-dba, oraperf,
orapub. If they mention that they have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals
questions become a little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates
via phone interviews. 
> Two out of four I talked to gave me perfect answers: word to word from
Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask
him/her to draw the SGA
> with all it interal structures, all background processes, and explain how
all this works
> together. 
> 
> - Kirti 
> 
>

**
> This e-mail message is confidential, intended only for the named
recipient(s) above and may contain information that is privileged, attorney
work product or exempt from disclosure under applicable law. If you have
received this message in error, or are not the named recipient(s), please
immediately notify corporate MIS at (860) 766-2000 and delete this e-mail
message from your computer, Thank you.
>

**4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http:/

RE: RE: dba interview questions

2003-10-24 Thread Scott Canaan
What do you need the stmt for?  Just do:

begin
for a in (select username from dba_users
  where username not in ('SYS','SYSTEM',...))
loop
execute immediate 'alter user '||a.username||' account
lock';
end loop;
end;
/

Scott Canaan ([EMAIL PROTECTED])
(585) 475-7886
"Life is like a sewer, what you get out of it depends on what you put
into it." - Tom Lehrer.


-Original Message-
Sent: Friday, October 24, 2003 2:00 PM
To: Multiple recipients of list ORACLE-L

Sure do, here's my favorite:

You have a database with 3000 registered users, you need to lock
all accounts except for a list of 20.  How would you do it?

Obviously there's several correct answers.  But the one I'm looking for
is the "anonymous PL/SQL block" defined like:

declare 
stmt varchar2(200);
begin
for a in (select username from dba_users
  where username not in ('SYS','SYSTEM',...))
loop
stmt := 'alter user '||a.username||' account lock';
execute immediate stmt;
end loop;
end;
/


Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 12:00 PM
To: Multiple recipients of list ORACLE-L


do any of you ask dbas pl/sql questions? I think its important for DBAs
to be good developers as well. especially if they are part of a
development team. I dont think the skill sets should be seperate. they
overlap. 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask
them to defend it. Small issues like "Why would/wouldn't an index help?"
etc ... 
> 
> Another question that I *always* ask is "what do you or have you read
in last 3 months outside of Oracle manuals?" or "Do you know any other
sites that give you lot of oracle related information?" I expect to hear
at-least couple form following list ... ixora, hotsos, jlcomp,
oracle-dba, oraperf, orapub. If they mention that they have read YAPP,
that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals
questions become a little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen
candidates via phone interviews. 
> Two out of four I talked to gave me perfect answers: word to word from
Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask
him/her to draw the SGA
> with all it interal structures, all background processes, and explain
how all this works
> together. 
> 
> - Kirti 
> 
>

**
> This e-mail message is confidential, intended only for the named
recipient(s) above and may contain information that is privileged,
attorney work product or exempt from disclosure under applicable law. If
you have received this message in error, or are not the named
recipient(s), please immediately notify corporate MIS at (860) 766-2000
and delete this e-mail message from your computer, Thank you.
>

**4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: 

Re: how to specify tablespace in Designer

2003-10-24 Thread Jared Still
The odtug lists are interestingly enough, hosted by fatcity.com.

Here is the complete list of fatcity lists:


   
#   
##
##   
## --> LIST OF MAILING LISTS CARRIED BY FATCITY.COM   
##   
##
##   
   
#   
   
   
  Mailing List Description   List Name Moderated?
Closed?   
  -- - --
---   
   
  ** Category: Computers, Embedded **   
   
  The Chip Directory chipdir-L No
No   
   
   
  ** Category: Computers, Users Groups **   
   
  Oracle Development Tools Users Group   odtug-L   No
No   
ODTUG Data Warehousing   odtug-warehouse-L No
No   
ODTUG Methodologyodtug-methods-L   No
No   
ODTUG Designer/2000  odtug-des2k-L No
No   
ODTUG Developer/2000 odtug-dev2k-L No
No   
ODTUG Discoverer/2000odtug-disc2k-LNo
No   
ODTUG SQL*Plus   odtug-sqlplus-L   No
No   
ODTUG Java/JDeveloperodtug-java-L  No
No  
ODTUG Web Developmentodtug-webdev-LNo
No  
ODTUG Board Members  odtug-board-L No
Yes   
ODTUG Conference Committee   odtug-confcomm-L  No
Yes  
ODTUG Membership Committee   odtug-memcomm-L   No
Yes 
ODTUG Designer Committee odtug-descomm-L   No
Yes 
ODTUG Conference Parents Connect odtug-conf-parents-L 
   No No
ODTUG IOUG Coordination list odtug-ioug-L  No
Yes 
ODTUG Business Rules odtug-rules-L No No
  
  Oracle on Linuxoracle-linux-LNo
No  
  Oracle DBA Mailing Listoracle-L  No No
   
  Rocky Mountain Oracle Users Group  rmoug-L   No
No   
RMOUG Miscellanous Content   rmoug-misc-L  No
No   
RMOUG Board Members  rmoug-board-L No
Yes   
   
   
  ** Category: Computers, Software **   
   
  ListGuru Software Info listguru-LNo
No   
  ListGuru Administrators Mailing List   listguru-admins-L No
Yes   
   
  OpenGL Game Programming List   opengl-gamedev-L  No
No   
  OpenGL Advocacy Mailing List   opengl-advocacy-L No
No   
  OpenAL Development Listopenal-dev-L  No
No   
 
  Infinite Worlds Developers listiw-dev-L  No
Yes 
  Infinite Worlds Prayer listiw-prayer-L   No
Yes 
   
   
  ** Category: Corporations ** 
 
  Bridge Medical Point of Care Newsletter point-of-care-L  No No
  Bridge Medical Press Releases   bidge-news-L No
Yes 
 
 
  ** Category: Education **  
  
  Pacific Graduate School of Psychology  pgsp-LNo
No  
 
  Voyageurs-L discussion listvoyageurs-L   No
Yes 
  
  
  ** Category: Business Aeronautics **   
   
  Flight Attendants Association of Australia   
FAAA Qantas Long Haul List   faaa-qantas-long-L   
FAAA Qantas Short Haul List  faaa-qantas-short-L   
FAAA Ansett Domestic Listfaaa-ansett-dom-L   
FAAA Ansett Internaional Listfaaa-ansett-intl-L   
FAAA Southern Airlines List  faaa-southern-L   
FAAA Eastern Airlines List   faaa-eastern-L   
FAAA Flight West Listfaaa-flight-west-L   
FAAA Hazelton Airlines List  faaa-hazelton-L   
FAAA Kendall Airlines List   faaa-kendall-L   
FAAA Lloyds Aircrew List faaa-lloyds-L   
FAAA National Jet Systems List   faaa-national-jet-L   
FAAA Sunstate List   faaa-sunstate-L   
FAAA Skywest Listfaaa-skywest-L   
  NOTE: All lists in the FAAA- category are announce-only, private
lists.   
   
   
  ** Category: Recreation / Hobbies **   
   
  Animatronics (robotics, puppets, etc)  animatronics-LNo
No   

On Thu, 2003-10-23 at 18:44, sundeep maini wrote:
> Ben,
> 
> If you had posted this question to designer-L you'd have gotten
> insight from some real experts.  In designer table definition(table
> columns, indexes, keys, constraints) is different from table
> implementation(schema, tablespace, storage parameters).  The same
> table definition can be associated with many different table
> implementation (e.g. different sto

Re: full recovery

2003-10-24 Thread AK
More Info :
OS : HP-UX   oracle :8.1.7.4.

Dennis ,
We are using controlfile and not recov catalog. Now Since I am on 8.1.7.4 ,
no different then you. If I dont have a explicit control file backup then
finding SNCF ( snapshot control file ) is another way . Since we have a file
system backup which any way takes whole backup of file system , it should
have SNCF included in it , BUT that file system backup runs before rman
backup . ( I am not the one who did all this .. just looking at some one
els's work ).
Yes,  I can restore  to same path , so no problem with renaming files in
rman restore.

oyaa i do have free(man)'s guide but that's for 9i .

Thanks,
-ak



- Original Message - 
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 11:15 AM


> AK - This sounds like a disaster recovery test. Be sure to buy Robert
> Freeman's Oracle9i RMAN Backup & Recovery if you don't have it already. I
am
> on 8.1.6, and had difficulty extracting the control file from the backup
> (others on this list have done it, this is better on 9i). So I just
> "cheated" by backing that up after the RMAN backup and restoring it first.
> That way I can start RMAN and execute a STARTUP MOUNT. You don't say so
> explicitly, but I'm guessing you're using the control file to run RMAN. I
> never figured out how to pull the RMAN backup files from a location other
> than their original path, but fortunately with Unix it is easy to create a
> link. Can you restore the data files to their original path?
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> From: AK [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 24, 2003 1:15 PM
> To: Multiple recipients of list ORACLE-L
> Subject: full recovery
>
>
> Here is a scenerio :
> I am taking full database backup everynight using rman to tape . which
> includes archive logs and control file. Not using catalog.Also have a
backup
> of complete file system including oracle software and configuration files
(
> init.ora , listener.ora etc.. )
> I lost the host on a particular day at 12 am afternoon. Now I want to
> restore this db to latest possible time to another host ( with same name )
> .
> what are steps I need to do .
>
> 1. restore oracle software from tape.
> 2. restore config files ( init.ora , listener. ora ).
> 3. startup instance with nomount.
> 4. (  here I get confused , since I dont have latest control file ,
what
> are implication , and what should I do )
> 5. connect to rman
> 6. run ( set until ...; restore db ;  recover db ; )
>
> Thanks,
> -ak
>
>
>
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Seven Deadly Sins in Oracle?

2003-10-24 Thread AK
I am also interested in this paer .

-ak

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 12:14 PM


> List,
>
> Anyone has the copy of Steve Adams'  'Seven deadly sins in Oralce' paper.
I
> guess Steve presented this in OOW '01 and I am looking for that paper.. If
> anyone has a copy of that note, please mail me privately.
>
> Thanks !
>
> Regards,
> K Gopalakrishnan
> Bangalore, INDIA
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: K Gopalakrishnan
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle /db2

2003-10-24 Thread Stephane Paquette
There is 2 documents I know:

The one from Oracle is absolutely vendor oriented 

http://www.quest.com/presentations/DB2_vs_Oracle.pdf

http://otn.oracle.com/deploy/performance/pdf/CWP_9IVSDB2_PERF.PDF




Stephane Paquette
Administrateur de bases de donnees
Database Administrator
Standard Life
www.standardlife.ca
Tel. (514) 499-7999 7470 and (514) 925-7187
[EMAIL PROTECTED] 


-Original Message-
Joe Testa
Sent: 24 octobre, 2003 10:49
To: Multiple recipients of list ORACLE-L


Well i've been tasked to do some crosstraining of db2 DBAs to teach them
oracle(dark side, ok more expensive side).

Does anyone know of a white paper, document, book, etc that would do DBA
tasks comparisons?

looking for something like "alter database datafile 'filename' resize
1000m;"  command in oracle is equivalent to that in db2/udb.

Does something like that exist?

thanks, joe

--
Joseph S Testa
Chief Technology Officer
Data Management Consulting
p: 614-791-9000
f: 614-791-9001


--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Joe Testa
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Paquette
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: VPN to database?

2003-10-24 Thread Jared Still

Are you tunneling sqlnet through ssh?

http://www.akadia.com/services/ssh_install_and_use.html

On Fri, 2003-10-24 at 08:44, Todd Boss wrote:
> I can tell you right now, i'm VPN'd to a client overseas and have
> NOT been able to get OCI to work over the protocol.  I can telnet/ssh
> to the machine where the Oracle server runs (its Solaris) and work
> via a sql*plus window, but nothing runs locally (i.e., Toad or windows
> version of sql*plus connected to the remote server).
> 
> If there's some secret to making OCI work over VPN, we were not able
> to find it.
> 
> boss
> 
> > 
> > We are an Application Service Provider--we maintain a set of servers in
> > a colocation facility and our customers use our application via the
> > Web.  Security is a paramount concern, of course, and only our Web
> > server has a public IP address, with the application and database
> > servers completely private. 
> > 
> > We supply a number of standard reports, but most of our customers want
> > some custom reports as well.  We would like to give them access to our
> > database, possibly over a VPN, but only if security can be maintained. 
> > I'd like to know if anyone has faced such a situation, and what kind of
> > configuration (network/firewall/VPN/Oracle Net) might make such access
> > possible.
> > 
> > TIA,
> > 
> > 
> > 
> > =
> > Paul Baumgartel
> > Transcentive, Inc.
> > www.transcentive.com
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Paul Baumgartel
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Todd Boss
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: full recovery

2003-10-24 Thread DENNIS WILLIAMS
AK - This sounds like a disaster recovery test. Be sure to buy Robert
Freeman's Oracle9i RMAN Backup & Recovery if you don't have it already. I am
on 8.1.6, and had difficulty extracting the control file from the backup
(others on this list have done it, this is better on 9i). So I just
"cheated" by backing that up after the RMAN backup and restoring it first.
That way I can start RMAN and execute a STARTUP MOUNT. You don't say so
explicitly, but I'm guessing you're using the control file to run RMAN. I
never figured out how to pull the RMAN backup files from a location other
than their original path, but fortunately with Unix it is easy to create a
link. Can you restore the data files to their original path?

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 1:15 PM
To: Multiple recipients of list ORACLE-L


Here is a scenerio :
I am taking full database backup everynight using rman to tape . which
includes archive logs and control file. Not using catalog.Also have a backup
of complete file system including oracle software and configuration files (
init.ora , listener.ora etc.. )
I lost the host on a particular day at 12 am afternoon. Now I want to
restore this db to latest possible time to another host ( with same name )


Seven Deadly Sins in Oracle?

2003-10-24 Thread K Gopalakrishnan
List,

Anyone has the copy of Steve Adams'  'Seven deadly sins in Oralce' paper. I
guess Steve presented this in OOW '01 and I am looking for that paper.. If
anyone has a copy of that note, please mail me privately.

Thanks !

Regards,
K Gopalakrishnan
Bangalore, INDIA

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: K Gopalakrishnan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle pricing ain't going down

2003-10-24 Thread Jared Still
'identity' is not the same as a sequence.

An identity column is a self incrementing column for
use as a PK.  As it's only use is to increment a 
column value, it is not quite as powerful as a sequence.

Jared

On Fri, 2003-10-24 at 11:44, Abey Joseph wrote:
> My workplace is going in the same direction as David Mitchell's.  Our OLTP
> systems are Oracle, basically everything else is being (or being considered)
> migrated to MSSQL2000.
> 
> I am not that familiar with SQL Server, but I believe SQL2000 has sequences.
> I think MS calls it identity.  I think MS also has IOT, which they call
> clustered indexes.  MS might even have function based indexes with SQL2000,
> but not very sure.  Anyone care to comment?
> 
> Abey.
> 
> - Original Message - 
> To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> Sent: Thursday, October 23, 2003 11:19 PM
> 
> 
> > > -Original Message-
> > > From: Ryan [mailto:[EMAIL PROTECTED]
> > > Sent: Friday, 24 October 2003 12:44
> > > To: Multiple recipients of list ORACLE-L
> > > Subject: Re: Oracle pricing ain't going down
> > >
> > >
> > > what is MSEE lacking in?
> >
> > 
> >
> > Here's a start.  MSSQLServer EE has ...
> >
> > No bitmap indexes, no partitioned indexes, no function-based indexes, no
> domain indexes, no reverse key indexes, no object tables, no before triggers
> (can be kludged, not pretty), no multiple actions per trigger event, no
> 3rd-party language support a la Oracle's JVM and pro*... modules, no
> built-in OLAP (it's a weird bolt-on), no control over extent size, no
> control over block size, no star query optimisation, no sequences, no
> synonyms, no packages, no structured exception handling in stored proc
> language (TSQL), no MINUS union operator, no multiplexing or mirroring of
> log files, no cyclical log management, no escalation-free locking, no index
> organised tables.
> >
> > (Working with both every day, do you get the feeling I've been asked this
> before? :-))
> >
> > Half of those things are available in Oracle SE One :-)
> >
> > Ciao
> > Fuzzy
> > :-)
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Grant Allen
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> >
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Abey Joseph
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Two ODBC problems

2003-10-24 Thread Boivin, Patrice J
1st problem

One of our clients' PCs which are still running Access97 can't connect to
Oracle 8i via ODBC drive 8.00.61.00.  This is the first ODBC driver for
Oracle 8.0.6, it is known to be buggy.  We cannot upgrade the ODBC drivers
on all the clients though, that is done by another group.

The user can invoke the Data Source, and see a list of the objects
presumably available to connect, but as soon as one of them is selected ODBC
fails.

The developers suspect suspect it could be because of the sheer number of
objects in the database, esp. the number of java classes:  There are 9974
java classes in the SYS schema.  Total objects count is 38640.

Our production db doesn't have as many, 6442 java classes only.  That brings
our total number of objects to a mere 35845.  The client PC can connect to
this one using Access97 and the 8.00.61.00 ODBC driver.

The developers tell me they confirmed that they also cannot connect with
this driver using Access2000.  We know it's the driver.

I already know that one can get around this problem by creating an
ALL_OBJECTS view in the user account's schema, to mask the java classes from
the listing, but the idea of replacing data dictionary views manually in
people's schemas is leaving some people here a bit uncomfortable.

Is there a way to weed through the java classes, and remove the ones that
are never used from the database?  (I am throwing that in as a lark)  Is
there a data dictionary view that helps manage Java components like there
are for PL/SQL stored objects?  If Java is in the database, presumably it's
possible to see how the java objects are used, where they are, etc. from the
data dictionary?  A last access time would be a nice feature.


2nd problem

The current Microsoft driver for Oracle can connect to both databases.

We had another problem with Access97 using the ODBC driver that comes with
Office97.  Access97 doesn't see the prefix to table names, including those
belonging to public.  Because of that, in the list we can end up with
duplicates and Access panics when it sees that not all items listed are
unique.  It becomes so hysterical that users can't even tell it to calm down
and point it to an item in the list.

Oracle Support confirmed for me that the problem doesn't exist on
Access2000, they suggested I upgrade since Microsoft doesn't support
Access97 anymore.

We can't upgrade Access before June 2004, there are so many PCs to upgrade
that this individual's PC won't get upgraded before then.

Patrice.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Boivin, Patrice J
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle /db2

2003-10-24 Thread Pete Sharman
Joe

Not sure if it's that specific, but there has been material put up on
searchDatabase.com that does some of this.  I can dig out the URL for you if
you haven't already seen that.

Pete
"Controlling developers is like herding cats."
Kevin Loney, Oracle DBA Handbook
"Oh no, it's not.  It's much harder than that!"
Bruce Pihlamae, long-term Oracle DBA
 


-Original Message-
Testa
Sent: Saturday, October 25, 2003 12:49 AM
To: Multiple recipients of list ORACLE-L


Well i've been tasked to do some crosstraining of db2 DBAs to teach them 
oracle(dark side, ok more expensive side).

Does anyone know of a white paper, document, book, etc that would do DBA 
tasks comparisons?

looking for something like "alter database datafile 'filename' resize 
1000m;"  command in oracle is equivalent to that in db2/udb.

Does something like that exist?

thanks, joe

-- 
Joseph S Testa
Chief Technology Officer 
Data Management Consulting
p: 614-791-9000
f: 614-791-9001


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Joe Testa
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Pete Sharman
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: state objects

2003-10-24 Thread DENNIS WILLIAMS
Tanel - It certainly is good to have you back!

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 11:39 AM
To: Multiple recipients of list ORACLE-L


Go to http://www.ixora.com.au/q+a/misc.htm and search for state object free
lists.

Tanel.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 6:59 PM


> Does anybody have a definition for the Oracle shared pool component "State
> Object"? An Object that holds the state of something? Using Google, I get
> some hints, but just wondered if someone has something definite.
>
> Sultan - your question got my curiosity aroused. I'm sorry I lost your
reply
> that confirmed you were indeed looking at the SGA.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 8:59 AM
> To: '[EMAIL PROTECTED]'
>
>
> Sultan - Are you referring to the Oracle shared pool components that are
> identified as state objects? A quick Google also revealed that Java has
> state objects.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 3:14 AM
> To: Multiple recipients of list ORACLE-L
>
>
> Can someone please explain what is 'state objects' in oracle and what is
> that real work?
>
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Tanel Poder
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: RE: dba interview questions

2003-10-24 Thread Goulet, Dick
Sure do, here's my favorite:

You have a database with 3000 registered users, you need to lock all accounts 
except for a list of 20.  How would you do it?

Obviously there's several correct answers.  But the one I'm looking for is the 
"anonymous PL/SQL block" defined like:

declare 
stmt varchar2(200);
begin
for a in (select username from dba_users
  where username not in ('SYS','SYSTEM',...)) loop
stmt := 'alter user '||a.username||' account lock';
execute immediate stmt;
end loop;
end;
/


Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 12:00 PM
To: Multiple recipients of list ORACLE-L


do any of you ask dbas pl/sql questions? I think its important for DBAs to be good 
developers as well. especially if they are part of a development team. I dont think 
the skill sets should be seperate. they overlap. 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask them to 
> defend it. Small issues like "Why would/wouldn't an index help?"  etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in last 3 
> months outside of Oracle manuals?" or "Do you know any other sites that give you lot 
> of oracle related information?" I expect to hear at-least couple form following list 
> ... ixora, hotsos, jlcomp, oracle-dba, oraperf, orapub. If they mention that they 
> have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals questions become a 
> little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates via phone 
> interviews. 
> Two out of four I talked to gave me perfect answers: word to word from Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask him/her to 
> draw the SGA
> with all it interal structures, all background processes, and explain how all this 
> works
> together. 
> 
> - Kirti 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have received this message in error, or are 
> not the named recipient(s), please immediately notify corporate MIS at (860) 
> 766-2000 and delete this e-mail message from your computer, Thank you.
> **4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Goulet, Dick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be remov

Re: Oracle pricing ain't going down

2003-10-24 Thread Abey Joseph
My workplace is going in the same direction as David Mitchell's.  Our OLTP
systems are Oracle, basically everything else is being (or being considered)
migrated to MSSQL2000.

I am not that familiar with SQL Server, but I believe SQL2000 has sequences.
I think MS calls it identity.  I think MS also has IOT, which they call
clustered indexes.  MS might even have function based indexes with SQL2000,
but not very sure.  Anyone care to comment?

Abey.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 11:19 PM


> > -Original Message-
> > From: Ryan [mailto:[EMAIL PROTECTED]
> > Sent: Friday, 24 October 2003 12:44
> > To: Multiple recipients of list ORACLE-L
> > Subject: Re: Oracle pricing ain't going down
> >
> >
> > what is MSEE lacking in?
>
> 
>
> Here's a start.  MSSQLServer EE has ...
>
> No bitmap indexes, no partitioned indexes, no function-based indexes, no
domain indexes, no reverse key indexes, no object tables, no before triggers
(can be kludged, not pretty), no multiple actions per trigger event, no
3rd-party language support a la Oracle's JVM and pro*... modules, no
built-in OLAP (it's a weird bolt-on), no control over extent size, no
control over block size, no star query optimisation, no sequences, no
synonyms, no packages, no structured exception handling in stored proc
language (TSQL), no MINUS union operator, no multiplexing or mirroring of
log files, no cyclical log management, no escalation-free locking, no index
organised tables.
>
> (Working with both every day, do you get the feeling I've been asked this
before? :-))
>
> Half of those things are available in Oracle SE One :-)
>
> Ciao
> Fuzzy
> :-)
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Grant Allen
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Abey Joseph
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: how is it possible

2003-10-24 Thread adamdonahue
Are you using vi?  Sometimes if you try to :wq! to a specific name a 
little too quickly, you might accidentally punch in a non-printable 
control character in the filename.

Adam




"AK" <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
10/24/2003 10:24 AM
Please respond to
[EMAIL PROTECTED]


To
Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc

Subject
Re: how is it possible






Thanks Ron ,
This worked . But do you know why it happens . As I said its happening 
third
time with me . My unix screen behaves weired sometimes it doesn't print 
any
character I type and some time it prints characters which I never type ( 
in
this particular case ).

Thanks,
-ak

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 5:04 PM


>
> This generally happens when there is a CTL-H embedded in the filename.
Try
>
> mv *m* anotherfilename
>
> You should be able to get at it after that.
>
> Ron Thomas
> Hypercom, Inc
> [EMAIL PROTECTED]
> Each new user of a new system uncovers a new class of bugs. -- Kernighan
>
>
>
>   [EMAIL PROTECTED]
>   com  To:
[EMAIL PROTECTED]
>   Sent by: cc:
>   [EMAIL PROTECTED]Subject:  how is it
possible
>   .com
>
>
>   10/23/2003 04:49
>   PM
>   Please respond to
>   ORACLE-L
>
>
>
>
>
>
> This happening with me 3 rd time on this hp box . When I do ls -alt I 
can
see a file in current
> directory but when I try to open it (vi/cat ) it says no such file or
directory .  I am same user
> who created the file .. ( no permission problem )
>
> Any idea ??
>
> -ak
>
>
>
>
>
> /home/ak/myscripts/shell_scr $ ls -alt
> total 4
> drwxrwxrwx   2 ak   dba 96 Oct 23 14:40 .
> -rwxrwxrwx   1 ak   dba412 Oct 23 14:40 mon_scr
> drwxr-x---  10 ak   dba   1024 Oct 13 16:07 ..
>
>  /home/ak/myscripts/shell_scr $ cat mon_scr
> cat: Cannot open mon_scr: No such file or directory
>
>  /home/ak/myscripts/shell_scr $ cat ./mon_scr
> cat: Cannot open ./mon_scr: No such file or directory
>
> /home/ak/myscripts/shell_scr $
>
> /home/ak/shell_scr $ whoami
> ak
>
>
>
>
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Ron Thomas
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: OT: How to call unix shell scripts from 'C'?

2003-10-24 Thread Pete Finnigan
Hi Ryan,

You could try the Unix shell compiler at 
http://www.datsi.fi.upm.es/~frosal/ which doesn't actually compile the
shell script but generates C and then the standard C compiler does the
rest. maybe write in shell with mv's and compile to C and see if it
looks efficient?

hope this helps

kind regards

Pete

In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
writes
>The unix and C forums are pretty inactive. Hope its ok to ask this here. 
>
>Anyone know how to do this? 
>
>-- 
>Please see the official ORACLE-L FAQ: http://www.orafaq.net

-- 
Pete Finnigan
email:[EMAIL PROTECTED]
Web site: http://www.petefinnigan.com - Oracle security audit specialists
Book:Oracle security step-by-step Guide - see http://store.sans.org for details.

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Pete Finnigan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: how is it possible

2003-10-24 Thread Thomas Day

What type of terminal are you emulating in your telnet session, what is the
value of your TERMINAL environmental variable and what are your stty
settings in your .profile?  I used to use VT110 or VT220 for the terminal.



   

  "AK" To:  Multiple recipients of list 
ORACLE-L <[EMAIL PROTECTED]>
  Sent by: cc: 

  ml-errorsSubject: Re: how is it possible 

   

   

  10/24/2003 12:24 

  PM   

  Please respond   

  to ORACLE-L  

   

   





Thanks Ron ,
This worked . But do you know why it happens . As I said its happening
third
time with me . My unix screen behaves weired sometimes it doesn't print any
character I type and some time it prints characters which I never type ( in
this particular case ).

Thanks,
-ak

- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 5:04 PM


>
> This generally happens when there is a CTL-H embedded in the filename.
Try
>
> mv *m* anotherfilename
>
> You should be able to get at it after that.
>
> Ron Thomas
> Hypercom, Inc
> [EMAIL PROTECTED]
> Each new user of a new system uncovers a new class of bugs. -- Kernighan
>
>
>
>   [EMAIL PROTECTED]
>   com  To:
[EMAIL PROTECTED]
>   Sent by: cc:
>   [EMAIL PROTECTED]Subject:  how is it
possible
>   .com
>
>
>   10/23/2003 04:49
>   PM
>   Please respond to
>   ORACLE-L
>
>
>
>
>
>
> This happening with me 3 rd time on this hp box . When I do ls -alt I can
see a file in current
> directory but when I try to open it (vi/cat ) it says no such file or
directory .  I am same user
> who created the file .. ( no permission problem )
>
> Any idea ??
>
> -ak
>
>
>
>
>
> /home/ak/myscripts/shell_scr $ ls -alt
> total 4
> drwxrwxrwx   2 ak   dba 96 Oct 23 14:40 .
> -rwxrwxrwx   1 ak   dba412 Oct 23 14:40 mon_scr
> drwxr-x---  10 ak   dba   1024 Oct 13 16:07 ..
>
>  /home/ak/myscripts/shell_scr $ cat mon_scr
> cat: Cannot open mon_scr: No such file or directory
>
>  /home/ak/myscripts/shell_scr $ cat ./mon_scr
> cat: Cannot open ./mon_scr: No such file or directory
>
> /home/ak/myscripts/shell_scr $
>
> /home/ak/shell_scr $ whoami
> ak
>
>
>
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Ron Thomas
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name 

full recovery

2003-10-24 Thread AK



Here is a scenerio :
I am taking full database backup everynight using 
rman to tape . which includes archive logs and control file. Not using 
catalog.Also have a backup of complete file system including oracle software and 
configuration files ( init.ora , listener.ora etc.. )
I lost the host on a particular day at 12 am 
afternoon. Now I want to restore this db to latest possible time to another host 
( with same name )  .
what are steps I need to do .
 
1. restore oracle software from tape.
2. restore config files ( init.ora , listener. ora 
).
3. startup instance with nomount.
4. (  here I get confused , since I dont have 
latest control file , what are implication , and what should I do )
5. connect to rman
6. run ( set until ...; restore db ;  recover 
db ; )
 
Thanks,
-ak
 
 


Re: state objects

2003-10-24 Thread K Gopalakrishnan
Wishing you all a  very  Happy Diwali.. The festival of lights  !

State object is a structure inside the shared pool which keeps the details
about
every components (for example, process or session or enqueues) and their
status (or state).  Basically it is an operating system resource related to
the
oracle instance (or an OS resource held by oracle instance) which has
multiple
states (free/init and dead I think). The background process PMON is
responsible for freeing those resources to the OS should any of the state
object dies because of the process failure.

Typically the SYSTEMSTATE dump will have the details about the state
objects.
Part of this info is visible in the V$sysstat. You will see the state object
as SO in the
system state dump. Along with you get the owner (holding that SO) and the
state
of the state object (is that too confusing?)  which tells whether that SO is
in the freelist
or initialized or dead.

For better understanding of the various state objects I would recommend to
take a
systemstate/process state dump and have a look at the trace files.


Regards,
K Gopalakrishnan
Bangalore, INDIA




- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 9:29 PM


> Does anybody have a definition for the Oracle shared pool component "State
> Object"? An Object that holds the state of something? Using Google, I get
> some hints, but just wondered if someone has something definite.
>
> Sultan - your question got my curiosity aroused. I'm sorry I lost your
reply
> that confirmed you were indeed looking at the SGA.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 8:59 AM
> To: '[EMAIL PROTECTED]'
>
>
> Sultan - Are you referring to the Oracle shared pool components that are
> identified as state objects? A quick Google also revealed that Java has
> state objects.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 3:14 AM
> To: Multiple recipients of list ORACLE-L
>
>
> Can someone please explain what is 'state objects' in oracle and what is
> that real work?
>
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: K Gopalakrishnan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: dba interview questions

2003-10-24 Thread KENNETH JANUSZ
I have had a couple of interviews for Oracle DBA jobs where they pull out a
list of technical questions about the most minor items you can think of.
Being able to answer them indicates how good a person's grey brain cells are
at memorizing trivia.  They do not measure a persons ability to problem
solve which is a skill that I think a company would be interested in when
hiring a DBA!

My $0.02 worth,

Ken Janusz, CPIM


- Original Message -
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 9:39 AM


> Pre-packaged questions are always a bad idea. When a company needs a
> DBA, it should know what do they need him for. Do they need them to
> monitor and troubleshoot production database and ensure the
> availability of the database, or help developers, or lead the database
> related projects or to help clients and install software or mop the
> floors and grind coffee? The abbreviation "DBA" can be applied to the
> great variety of business roles, some of which are mutually exclusive.
> Cary Millsap is using terms "performance analyst" and "performance
> related projects". Traditionally, companies do not have "performance
> analysts", they have DBA's performing this function. The abbreviation
> "DBA" came to mean almos anything short of "performing brain surgery".
> To make a long story short, the company looking for a DBA should know
> what specific job functions are they interested in, what specific
> skills are needed to perform the required job functions and adjust the
> the interviewing process. For instance, if you need a DBA to go and
> help your clients, then driver's license would be a requirement. Sounds
> trivial, but I know a lot of folks from NYC that don't drive and don't
> have driver's license. Generally speaking, driver's license is not a
> requirement for the DBA position, but sometimes, it can be.
>
> On 10/24/2003 09:49:26 AM, Kirtikumar Deshpande wrote:
> > The problem with such lists is that the prospects also have those...
> > A few years ago Mike Ault published one. We used it to screen
> > candidates via phone interviews.
> > Two out of four I talked to gave me perfect answers: word to word
> > from
> > Mike's list.
> >
> > Use Conner's approach: Give the candidate a white/black board, and
> > ask
> > him/her to draw the SGA
> > with all it interal structures, all background processes, and explain
> > how all this works
> > together.
> >
> > - Kirti
> >
> >
> > --- system manager <[EMAIL PROTECTED]> wrote:
> > > Dear List,Can anyone send me a list of dba interview questions?
> > >
> > > Thanks,
> > >
> > >
> > > _
> > > Free email with personality! Over 200 domains!
> > > http://www.MyOwnEmail.com
> > > Looking for friendships,romance and more?
> > > http://www.MyOwnFriends.com
> > >
> > >
> >
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > --
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > --
> > Author: Kirtikumar Deshpande
> >   INET: [EMAIL PROTECTED]
> >
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> >
>
> Mladen Gogala
> Oracle DBA
>
>
>
> Note:
> This message is for the named person's use only.  It may contain
confidential, proprietary or legally privileged information.  No
confidentiality or privilege is waived or lost by any mistransmission.  If
you receive this message in error, please immediately delete it and all
copies of it from your system, destroy any hard copies of it and notify the
sender.  You must not, directly or indirectly, use, disclose, distribute,
print, or copy any part of this message if you are not the intended
recipient. Wang Trading LLC and any of its subsidiaries each reserve the
right to monitor all e-mail communications through its networks.
> Any views expressed in this message are those of the individual sender,
except where the message states otherwise and the sender is authorized to
state them to be the views of any such entity.
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Mladen Gogala
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send a

RE: VPN to database?

2003-10-24 Thread Goulet, Dick
No problem here, except that it's slower if your expecting a ton of data.

Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 11:45 AM
To: Multiple recipients of list ORACLE-L


I can tell you right now, i'm VPN'd to a client overseas and have
NOT been able to get OCI to work over the protocol.  I can telnet/ssh
to the machine where the Oracle server runs (its Solaris) and work
via a sql*plus window, but nothing runs locally (i.e., Toad or windows
version of sql*plus connected to the remote server).

If there's some secret to making OCI work over VPN, we were not able
to find it.

boss

> 
> We are an Application Service Provider--we maintain a set of servers in
> a colocation facility and our customers use our application via the
> Web.  Security is a paramount concern, of course, and only our Web
> server has a public IP address, with the application and database
> servers completely private. 
> 
> We supply a number of standard reports, but most of our customers want
> some custom reports as well.  We would like to give them access to our
> database, possibly over a VPN, but only if security can be maintained. 
> I'd like to know if anyone has faced such a situation, and what kind of
> configuration (network/firewall/VPN/Oracle Net) might make such access
> possible.
> 
> TIA,
> 
> 
> 
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Goulet, Dick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: UTL_RAW and slowness

2003-10-24 Thread Jared Still
Ah, I see.  The business folks are happy that whoever wrote
the previous bit has successfully 'encrypted' their data, and
your job is to make that bit perform.

A familiar refrain.  ;)

Jared

On Fri, 2003-10-24 at 06:34, Jamadagni, Rajendra wrote:
> Jared, I know, but this is a legacy code that is attached to a hardware ticker tape 
> that scrolls message that it received. The code I supplied has couple of other 
> operations removed (for obvious reasons) but these steps are required because the 
> hardware chip in the ticker box won't recognize it.
>  
> BTW, I have successfully used RC4 from your site in past to implement encryption.
>  
> HTH Some
> Raj
> 
> -Original Message-
> Sent: Thursday, October 23, 2003 7:06 PM
> To: [EMAIL PROTECTED]
> Cc: Jamadagni, Rajendra
> Importance: High
> 
> 
> 
> Raj, 
> 
> I'll try to be tactful here, but that isn't encryption. It only looks like 
> encryption, and is in fact very easy to break. 
> 
> Check out the article at 
> http://www.cybcon.com/~jkstill/util/encryption/encryption.html 
> 
> There are PL/SQL implementations of RC4 and Blowfish there. RC4 is a stream cipher 
> and Blowfish is a block cipher.  Either would suit your purpose. 
> 
> Blowfish is there courtesy of Craig Munday. 
> 
> RC4 is there courtesy of a leak at RSA, but it's in the public domain now, so that 
> doesn't matter anymore. 
> 
> Also check Pete Finnigans site:  http://www.petefinnigan.com/ 
> 
> HTH 
> 
> Jared 
> 
> 
> 
> 
> 
>   "Jamadagni, Rajendra" <[EMAIL PROTECTED]> 
> Sent by: [EMAIL PROTECTED] 
> 
> 
>  10/23/2003 02:54 PM 
>  Please respond to ORACLE-L 
> 
> 
> 
> To:Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> 
> cc: 
> Subject:UTL_RAW and slowness
> 
> 
> 
> Hi all, 
> 
> I am experimenting with a block of pl/sql code (wrote myself) that uses utl_raw to 
> perform xor operation. (Note to Jared and Mladan, I can't use Perl on production 
> boxes, so don't even go there). 
> 
> 
> I take a message, encrypt 1 character send it out on a wire using utl_tcp. After 
> every 128 bytes, I flush the tcp connection. While this works fine and within our 
> acceptable range for smallish messages (up to 20-25K in size), it nearly kills 
> itself when working with larger messages (80k+). 
> 
> 
> Initially I could encrypt 128 characters (including conversion from/to utl_raw) in 
> about 50ms. Bt this increase progressively. When I reach about 98000 to 99000 range, 
> it takes about 16 seconds to encrypt 128 characters. 
> 
> 
> I have logged tar with Oracle, but does anyone know if one could do a block 
> encryption (can't use standard algorithms, this is custom) like encrypt 128 
> characters at a time instead of 1 ... 
> 
> 
> The skeleton code looks like this ... 
> 
> 
> msglen := LENGTH (msg_text); 
> nCharsSent := 0; 
> p('Encrypting data...'); 
> FOR i IN 1 .. msglen 
> LOOP 
>  ntcpchar := ASCII (SUBSTR (msg_text, i, 1)); 
>  r_chr:= utl_raw.cast_to_raw(CHR(ntcpchar)); 
>  nenctcpchar := TO_NUMBER(utl_raw.bit_xor(r_chr,r_key),''); 
>  tcpmsglen := UTL_TCP.write_text (gv_tcp_conn, CHR(nenctcpchar), NULL); 
>   nCharsSent := nCharssent + 1; 
>  IF MOD(ncharssent,128) = 0 THEN 
>p('Before Flush ...'); 
>UTL_TCP.FLUSH (gv_tcp_conn); 
>p('Connection Flushed at ' || ncharssent); 
>  END IF; 
>  --
> END LOOP; -- FOR i IN 1 .. msglen 
> 
> 
> where p is a procedure that dumps supplied text to a trace file with a timestamp 
> that is up to 1 ms resolution. BTW this is a 9202 box. Also when it starts getting 
> slow, using "nmon" I can see that this process is hogging a CUP at 99-100%. Of 
> course this is a dev box, but my SA will not like this on a production box. 
> 
> 
> Any ideas? 
> Thanks in advance 
> Raj 
>  
> Rajendra dot Jamadagni at nospamespn dot com 
> All Views expressed in this email are strictly personal. 
> QOTD: Any clod can have facts, having an opinion is an art ! 
> 
> 
> 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have received this message in error, or are 
> not the named recipient(s), please immediately notify corporate MIS at (860) 
> 766-2000 and delete this e-mail message from your computer, Thank you.
> **5
>  
> 
> 
> 
> 
> 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have

RE: VPN to database?

2003-10-24 Thread DENNIS WILLIAMS
Boss
   Is this a firewall issue?

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 10:45 AM
To: Multiple recipients of list ORACLE-L


I can tell you right now, i'm VPN'd to a client overseas and have
NOT been able to get OCI to work over the protocol.  I can telnet/ssh
to the machine where the Oracle server runs (its Solaris) and work
via a sql*plus window, but nothing runs locally (i.e., Toad or windows
version of sql*plus connected to the remote server).

If there's some secret to making OCI work over VPN, we were not able
to find it.

boss

> 
> We are an Application Service Provider--we maintain a set of servers in
> a colocation facility and our customers use our application via the
> Web.  Security is a paramount concern, of course, and only our Web
> server has a public IP address, with the application and database
> servers completely private. 
> 
> We supply a number of standard reports, but most of our customers want
> some custom reports as well.  We would like to give them access to our
> database, possibly over a VPN, but only if security can be maintained. 
> I'd like to know if anyone has faced such a situation, and what kind of
> configuration (network/firewall/VPN/Oracle Net) might make such access
> possible.
> 
> TIA,
> 
> 
> 
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: dba interview questions

2003-10-24 Thread Thomas Day

Ask them what their daily, weekly, and monthly procedures are.  How do they
accomplish them?  Do they have an example of their daily checklist (or can
they generate it from memory)?


   

  Kirtikumar   

  DeshpandeTo:  Multiple recipients of list 
ORACLE-L <[EMAIL PROTECTED]>


  Sent by: 

  ml-errors

   

   

  10/24/2003 09:49 

  AM   

  Please respond   

  to ORACLE-L  

   

   





The problem with such lists is that the prospects also have those...
A few years ago Mike Ault published one. We used it to screen candidates
via phone interviews.
Two out of four I talked to gave me perfect answers: word to word from
Mike's list.

Use Conner's approach: Give the candidate a white/black board, and ask
him/her to draw the SGA
with all it interal structures, all background processes, and explain how
all this works
together.

- Kirti


--- system manager <[EMAIL PROTECTED]> wrote:
> Dear List,Can anyone send me a list of dba interview questions?
>
> Thanks,
>
>
> _
> Free email with personality! Over 200 domains!
> http://www.MyOwnEmail.com
> Looking for friendships,romance and more?
> http://www.MyOwnFriends.com
>
>

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Kirtikumar Deshpande
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).





-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Thomas Day
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle 9.2.0.4 on Gentoo

2003-10-24 Thread Jared Still
Thanks Rich.  I have a new set of the recent
Gentoo release on my desk, and was just wondering
if Oracle would install on it.

cool  :)

On Fri, 2003-10-24 at 08:44, Jesse, Rich wrote:
> More of an FYI than anything...
> 
> Kernel: 2.4.20-gentoo-r7  (from Gentoo 1.4 stage 1 tarball)
> glibc:  2.3.2-r1
> 
> 9.2.0.1 from the disks installed with the usual linking problems mentioned
> on various websites (ctx libs, etc.).  Since I didn't really care about
> running 9.2.0.1, I ignored the errors.  I d/l'd the 9.2.0.4 patch and did
> the usual installer upgrade, then patched to 9.2.0.4 -- without a single
> error or issue!
> 
> No kiddin', the damnable thing came through with flying colors, at least on
> the core DB stuff.  I've got a DB manually created on the first try,
> configured networking (again, "manual" is the only way to fly), and I'm up
> and running.  No glibc flipping, no makefile hacking, no nothing.
> 
> I'm almost bold enough to try stripping everything in $OH/bin and blindly
> see if I can gain any significant performance.  Hey, I'm only on page 19 of
> Cary's and Jeff's book...  :D
> 
> Just thought this was interesting enough to merit posting.  Perhaps good
> enough for a dev box for some.  Hey, Gentoo is already grid-enabled with
> distcc in Portage!  :)
> 
> Rich
> 
> Rich Jesse   System/Database Administrator
> [EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jesse, Rich
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: VPN to database?

2003-10-24 Thread Todd Boss
I can tell you right now, i'm VPN'd to a client overseas and have
NOT been able to get OCI to work over the protocol.  I can telnet/ssh
to the machine where the Oracle server runs (its Solaris) and work
via a sql*plus window, but nothing runs locally (i.e., Toad or windows
version of sql*plus connected to the remote server).

If there's some secret to making OCI work over VPN, we were not able
to find it.

boss

> 
> We are an Application Service Provider--we maintain a set of servers in
> a colocation facility and our customers use our application via the
> Web.  Security is a paramount concern, of course, and only our Web
> server has a public IP address, with the application and database
> servers completely private. 
> 
> We supply a number of standard reports, but most of our customers want
> some custom reports as well.  We would like to give them access to our
> database, possibly over a VPN, but only if security can be maintained. 
> I'd like to know if anyone has faced such a situation, and what kind of
> configuration (network/firewall/VPN/Oracle Net) might make such access
> possible.
> 
> TIA,
> 
> 
> 
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Todd Boss
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: RE: dba interview questions

2003-10-24 Thread rgaffuri
do any of you ask dbas pl/sql questions? I think its important for DBAs to be good 
developers as well. especially if they are part of a development team. I dont think 
the skill sets should be seperate. they overlap. 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask them to 
> defend it. Small issues like "Why would/wouldn't an index help?"  etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in last 3 
> months outside of Oracle manuals?" or "Do you know any other sites that give you lot 
> of oracle related information?" I expect to hear at-least couple form following list 
> ... ixora, hotsos, jlcomp, oracle-dba, oraperf, orapub. If they mention that they 
> have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals questions become a 
> little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates via phone 
> interviews. 
> Two out of four I talked to gave me perfect answers: word to word from Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask him/her to 
> draw the SGA
> with all it interal structures, all background processes, and explain how all this 
> works
> together. 
> 
> - Kirti 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have received this message in error, or are 
> not the named recipient(s), please immediately notify corporate MIS at (860) 
> 766-2000 and delete this e-mail message from your computer, Thank you.
> **4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: index full scan over an index fast full scan in an analytic function?

2003-10-24 Thread Cary Millsap
The FF index scan reads all the block in the index, using multiblock
reads. The kernel then discards the branch blocks. If sorting of the
result set is required, then this is a separate row source operation,
because the rows don't come out of the segment in sorted order.

To see why, imagine the following index "picture", which I'll draw
sideways, using indentation to denote the parent-child relationship.
It's a pretty stupid-looking index (Oracle can have many more children
per branch block than I'll draw), but it'll work to illustrate. I'll
label each block in the index with file#:block#.

23:14
23:15
23:18
23:19
23:22
23:20
23:17
23:25
23:24
23:21
23:16
23:23

To range-scan the rows in the index, the kernel would read the following
blocks from file 23 using 'db file sequential read', in this order:

18, 19, 22, 17, 25, 21, 16, 23.

To FF scan the index, Oracle would read the following blocks using 'db
file scattered read' (assume a value of 8 for my example), in this
order:

14-21, 22-25

In using the results, the kernel would discard blocks 14, 15, 20, and
24. As I said, if the kernel needed the rows in the remaining blocks to
be in logical order (as opposed to the physical order in which they were
obtained), then the kernel would have to sort them.

This is how I think FF scan works. To be sure, trace a simple FF scan,
using extended SQL trace (event 10046 level 8).


Cary Millsap
Hotsos Enterprises, Ltd.
http://www.hotsos.com

Upcoming events:
- Performance Diagnosis 101: 10/28 Phoenix, 11/19 Sydney
- SQL Optimization 101: 12/8-12 Dallas
- Hotsos Symposium 2004: March 7-10 Dallas
- Visit www.hotsos.com for schedule details...


-Original Message-
Mladen Gogala
Sent: Thursday, October 23, 2003 10:34 PM
To: Multiple recipients of list ORACLE-L
function?

B*tree indexes are ALWAY ordered. That's the way they're created and
searched.
I don't know the difference between full index scan and fast full index
scan.  
I know that the latter is used when the tble rows are not needed. Sounds
like
both methods are reading all leaf blocks, from start to finish, using  
multiblock read. I am not aware of any difference between the two
methods.
This sounds like a question for asktom or ixora (Tom Kyte or Steve
Adams).
Wolfgang Breitling and J. Lewis might also know.

On 2003.10.23 23:14, Larry Elkins wrote:
> Because when doing an index range scan things are read ordered? Very
> different from an index fast full scan where blocks are simply grabbed
where
> they might lie?
> 
> Regards,
> 
> Larry G. Elkins
> The Elkins Organization Inc.
> [EMAIL PROTECTED]
> 214.954.1781
> 
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf
Of
> > Ryan
> > Sent: Thursday, October 23, 2003 9:34 PM
> > To: Multiple recipients of list ORACLE-L
> > Subject: Re: index full scan over an index fast full scan in an
analytic
> > function?
> >
> >
> > why would you not need a sort with a full index scan and need one
with a
> > fast full scan?
> > - Original Message -
> > To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
> > Sent: Thursday, October 23, 2003 5:19 PM
> > function?
> >
> >
> > > Possibly to avoid a sort operation (assuming that you might be
> > able to get
> > > away with a NOSORT when doing the full index scan)? It might be
deciding
> > > that the benefit of the multi-block reads for the fast full
> > scan are more
> > > than offset by the sort operation that would be needed (and might
not be
> > > needed when doing the full index scan).
> > >
> > > Regards,
> > >
> > > Larry G. Elkins
> > > The Elkins Organization Inc.
> > > [EMAIL PROTECTED]
> > > 214.954.1781
> > >
> > > > -Original Message-
> > > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of
> > > > [EMAIL PROTECTED]
> > > > Sent: Thursday, October 23, 2003 2:39 PM
> > > > To: Multiple recipients of list ORACLE-L
> > > > Subject: Re: index full scan over an index fast full scan in
> > an analytic
> > > > function?
> > > >
> > > >
> > > > i cant attach the 10053 trace. it has proprietary info. There
> > > > isnt much in analytic explain plan either.
> > > >
> > > > does anyone know in general why a full scan would be faster than
> > > > a fast full scan?
> > > > >
> > > > > From: <[EMAIL PROTECTED]>
> > > > > Date: 2003/10/23 Thu PM 03:09:26 EDT
> > > > > To: Multiple recipients of list ORACLE-L
<[EMAIL PROTECTED]>
> > > > > Subject: index full scan over an index fast full scan in an
> > > > analytic function?
> > > > >
> > > > > I have an index on the two columns used in this query. Why
> > > > would the optimizer choose an index full scan over an index fast
> > > > full scan?
> > > > >
> > > > > My question isnt why an index is used, but the type of index
scan?
> > > > >
> > > > > select *
> > > > > from (select 

Re: RE: dba interview questions

2003-10-24 Thread rgaffuri
not sure i like the 'read outside the oracle manuals'. I find that alot of people read 
alot of really bad books and then dont read the stuff on OTN. 

oracle has very good docs. I do have a beef over lack of syntax examples... 
> 
> From: "Jamadagni, Rajendra" <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:39:33 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: dba interview questions
> 
> We prefer to ask their experiences and then throw a curve ball and ask them to 
> defend it. Small issues like "Why would/wouldn't an index help?"  etc ... 
> 
> Another question that I *always* ask is "what do you or have you read in last 3 
> months outside of Oracle manuals?" or "Do you know any other sites that give you lot 
> of oracle related information?" I expect to hear at-least couple form following list 
> ... ixora, hotsos, jlcomp, oracle-dba, oraperf, orapub. If they mention that they 
> have read YAPP, that's a bonus too.
> 
> But if someone says they haven't read anything other than manuals questions become a 
> little steep.
> 
> Raj
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:49 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> The problem with such lists is that the prospects also have those...
> A few years ago Mike Ault published one. We used it to screen candidates via phone 
> interviews. 
> Two out of four I talked to gave me perfect answers: word to word from Mike's list. 
> 
> Use Conner's approach: Give the candidate a white/black board, and ask him/her to 
> draw the SGA
> with all it interal structures, all background processes, and explain how all this 
> works
> together. 
> 
> - Kirti 
> 
> **
> This e-mail message is confidential, intended only for the named recipient(s) above 
> and may contain information that is privileged, attorney work product or exempt from 
> disclosure under applicable law. If you have received this message in error, or are 
> not the named recipient(s), please immediately notify corporate MIS at (860) 
> 766-2000 and delete this e-mail message from your computer, Thank you.
> **4
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Jamadagni, Rajendra
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: VPN to database?

2003-10-24 Thread Goulet, Dick
We use VPN access for work at home & off hours support.  Typical configuration:

Client: Broadband internet access(Comcast or the like) with NetScreen VPN 
Client
Not sure what the firewall is.  2 & 3 tier clients work just spiffy.

Dick Goulet
Senior Oracle DBA
Oracle Certified 8i DBA

-Original Message-
Sent: Friday, October 24, 2003 11:14 AM
To: Multiple recipients of list ORACLE-L


We are an Application Service Provider--we maintain a set of servers in
a colocation facility and our customers use our application via the
Web.  Security is a paramount concern, of course, and only our Web
server has a public IP address, with the application and database
servers completely private. 

We supply a number of standard reports, but most of our customers want
some custom reports as well.  We would like to give them access to our
database, possibly over a VPN, but only if security can be maintained. 
I'd like to know if anyone has faced such a situation, and what kind of
configuration (network/firewall/VPN/Oracle Net) might make such access
possible.

TIA,



=
Paul Baumgartel
Transcentive, Inc.
www.transcentive.com

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Paul Baumgartel
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Goulet, Dick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Oracle 9.2.0.4 on Gentoo

2003-10-24 Thread Jesse, Rich
Isn't that what Oracle says for 9i2, too?  (tu-tu?)  My Gentoo box only has
384MB to run a small 60MB instance, the listener, NFS, SSH, and since it's
also a desktop, Enlightenment, Tora, MozFirebird and Opera7, GKrellM,
several ATerms, and I'm not using swap and still have something like 50MB
free physical after five Perl/DBD::JDBC connections to the DB from another
box.  And the modest P-III 866 slides along nicely serving up Oracle with
all of this running.

Oh wait, if I fire up VLC or Xine, the CPU hits 60%.  And Kino pushes it to
100%.  And I might actually hit some swap with Kino...stupid A/V processing
wants RAM.  Go figure.

WinWhat???  :D


Rich

Rich Jesse   System/Database Administrator
[EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA

> -Original Message-
> From: Mladen Gogala [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 24, 2003 11:14 AM
> To: Multiple recipients of list ORACLE-L
> Subject: Re: Oracle 9.2.0.4 on Gentoo
> 
> 
> Do you know of the minimum system requirements for Oracle 
> "ten grands"?
> My informaton tells me that 512MB RAM will be specified as a minimal  
> requirement.
> On 10/24/2003 11:44:53 AM, "Jesse, Rich" wrote:
> > More of an FYI than anything...
> > 
> > Kernel: 2.4.20-gentoo-r7  (from Gentoo 1.4 stage 1 tarball)
> > glibc:  2.3.2-r1
> > 
> > 9.2.0.1 from the disks installed with the usual linking problems
> > mentioned
> > on various websites (ctx libs, etc.).  Since I didn't really care
> > about
> > running 9.2.0.1, I ignored the errors.  I d/l'd the 9.2.0.4 
> patch and
> > did
> > the usual installer upgrade, then patched to 9.2.0.4 -- without a
> > single
> > error or issue!
> > 
> > No kiddin', the damnable thing came through with flying colors, at
> > least on
> > the core DB stuff.  I've got a DB manually created on the first try,
> > configured networking (again, "manual" is the only way to fly), and
> > I'm up
> > and running.  No glibc flipping, no makefile hacking, no nothing.
> > 
> > I'm almost bold enough to try stripping everything in $OH/bin and
> > blindly
> > see if I can gain any significant performance.  Hey, I'm 
> only on page
> > 19 of
> > Cary's and Jeff's book...  :D
> > 
> > Just thought this was interesting enough to merit posting.  Perhaps
> > good
> > enough for a dev box for some.  Hey, Gentoo is already grid-enabled
> > with
> > distcc in Portage!  :)
> > 
> > Rich
> > 
> > Rich Jesse   System/Database Administrator
> > [EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jesse, Rich
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: dba interview questions

2003-10-24 Thread Mladen Gogala
Let me continue the story. Around 11PM you want to watch a movie, so  
you decide to pick a few candidates, according to their letterheads,
the overall outlook of the resume , resounding company names that they  
worked for (no matter in what capacity), the school they attended and  
the overall physical appearance, if such information is available.
You also remember that John, the guy you play poker with has intervened
in favor of one of the candidates. The short list of candidates is  
assembled, with your friend's candidate on top. You remember that the
hiring manager owes you a favor and, voila, the fresh DBA is here!

On 10/24/2003 11:54:32 AM, DENNIS WILLIAMS wrote:
Bill
   So you are an HR person with a well-written job description in  
hand
and a
stack of resumes on the other (how may would you say a job posting
would
garner today -- 200?) It has been a long week of major and minor
employee
issues and the hiring manager has begun making ugly noises about  
"when
am I
going to see some candidates?". So you stuff the whole stack in your
briefcase with the illusion of a nice quiet evening to get some
solitude to
really go through these resumes. But there are issues with your
teenage
daughter and your wife's reaction to these issues, and you glance at
your
watch, see it is 9 pm. and realize you meant to go through those
resumes. So
you sit down, read the job description once, looks like Greek, read  
it
again, no better. Now you pick up the first resume and try to relate
the
words on the job description to the candidate's experience. You say  
to
yourself, hmm . . this is going to be a long evening.

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED]
-Original Message-
Sent: Friday, October 24, 2003 10:05 AM
To: Multiple recipients of list ORACLE-L
Mladen Gogala  scribbled on the wall in glitter crayon:

> Pre-packaged questions are always a bad idea. When a company needs  
a
> DBA, it should know what do they need him for. Do they need them to

but that would provide that the company actually know how to define
job
duties and then convey them to HR who would then be able to screen
applicants on actual experience and not just groups of letters.
--
Bill "Shrek" Thater ORACLE DBA
"I'm going to work my ticket if I can..." -- Gilwell song
[EMAIL PROTECTED]

One had to cram all this stuff into one's mind for the examinations,
whether
one liked it or not. This coercion had such a deterring effect on me
that,
after I had passed the final examination, I found the consideration  
of
any
scientific problems distasteful to me for an entire year. - Albert
Einstein
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Thater, William
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat Cit

Re: state objects

2003-10-24 Thread Tanel Poder
Go to http://www.ixora.com.au/q+a/misc.htm and search for state object free
lists.

Tanel.

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Friday, October 24, 2003 6:59 PM


> Does anybody have a definition for the Oracle shared pool component "State
> Object"? An Object that holds the state of something? Using Google, I get
> some hints, but just wondered if someone has something definite.
>
> Sultan - your question got my curiosity aroused. I'm sorry I lost your
reply
> that confirmed you were indeed looking at the SGA.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 8:59 AM
> To: '[EMAIL PROTECTED]'
>
>
> Sultan - Are you referring to the Oracle shared pool components that are
> identified as state objects? A quick Google also revealed that Java has
> state objects.
>
>
>
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED]
>
> -Original Message-
> Sent: Wednesday, October 22, 2003 3:14 AM
> To: Multiple recipients of list ORACLE-L
>
>
> Can someone please explain what is 'state objects' in oracle and what is
> that real work?
>
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Tanel Poder
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: dba interview questions

2003-10-24 Thread Wolfgang Breitling
That's more like it. The recent postings re this thread got too serious and 
all suffered from the same fatal flaw - they assumed that the interviewer 
knows something about Oracle database administration. But then you don't 
need a list of interview questions. Those lists are for interviewers who 
know nothing about the job they are interviewing for, which is why they do 
not only need a list of questions, but also the cheat sheet with the answers.

I like Bambi's question the best.

At 09:44 AM 10/24/2003, you wrote:

On 10/24/2003 11:04:34 AM, "Thater, William" wrote:

but that would provide that the company actually know how to define
job
duties and then convey them to HR who would then be able to screen
applicants on actual experience and not just groups of letters.
Now we are talking about the job description for damagement. HR is
usually perfectly capable of picking the best candidate, the one
with the most expensive suit, groundless self-confidence  and least
amount of knowledge or management capabilities. Racial, gender and
religious prejudices are usually a plus.
Mladen Gogala
Oracle DBA
Wolfgang Breitling
Oracle7, 8, 8i, 9i OCP DBA
Centrex Consulting Corporation
http://www.centrexcc.com 

--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Wolfgang Breitling
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Refresh option for Materialized view , want to use it during refresh - for

2003-10-24 Thread David Boyd
Hi Arup,

This is a very good method.  I would like to use it to modify some of my 
data loading procedures.  Here are my questions:
1. Do I need to create the table on the step 1 every time when I refresh the 
data If I refresh data once per day?
2. Is "ON PREBUILT TABLE" available on Oracle 8i?  When I was trying the 
method on Oracle 8i, I got missing keyword error on "PREBUILT".

Dave

Siddharth,

I will offer a slightly out-of-the-box solution. Please read it through
till the end to determine its applicability in your case.
It seems yours refresh interval is once a day and you don't mind stale
data for a max of 24 hours. You also refresh is complete, not
incremental. So, I would suggest the follwoing approach.
(1) Create a table first
CREATE TABLE CT_PRODUCTID_VW
TABLESPACE 
NOLOGGING
AS
SELECT .
(2) When you are ready to "refresh", drop the MV
DROP MATERIALIZED VIEW CT_PRODUCTID_VW;
(3) Create the MV with the PREBUILT TABLE option.
CREATE
MATERIALIZED VIEW CT_PRODUCTID_VW
BUILD IMMEDIATE
REFRESH START WITH SYSDATE
NEXT (SYSDATE + 1)
ON PREBUILT TABLE
AS
SELECT
msi.segment1productid,
...
Your MV is not accessible between STEP 2 and STEP3, which is really a
dictionary update and takes about a second or so. So the "outage" is
really 1 second, not 1/2 hr.
A few explanations are in order here.

(1) Creating an MV on a Prebuilt Table does not consume more space. The
segment that used to be a table simply becomes an MV.
(2) When you drop the MV, the MV is gone, but the table remains instact.
(3) The table can be create by any means - export/import, SQL*Loader,
INSERT APPEND, etc.
(4) IT places less strain on the system comapred to the MV refresh
option, simply because the MV refresh truncates the segment and then
builds it.
I presented a paper to the same effect at IOUG Live 2003. You can
download a modified version of the same from my website
www.proligence.com/downlaods.html, titled "Painless Master Table Alter"
from the Presentations Section.
HTH.

Arup Nanda





- Original Message -
To: Multiple recipients of list ORACLE-L
Sent: Tuesday, October 21, 2003 3:59 AM
refresh
Hi Gurus,

I have a materialized view, which is based on Oracle Apps tables and on
remote database. The view refresh takes around ½ hour, during this time
period I cannot see any records in the materialized view and therefore
my application faces errors.
The following is the view definition
CREATE
MATERIALIZED VIEW CT_PRODUCTID_VW
BUILD IMMEDIATE
REFRESH START WITH SYSDATE
NEXT (SYSDATE + 1)
AS
SELECT
msi.segment1productid,
msi.description description,
msi.inventory_item_id   inventory_item_id,
mc.segment1 product_family,
mc.segment2 product_type
FROM [EMAIL PROTECTED]  mcs,
 [EMAIL PROTECTED] mc,
 [EMAIL PROTECTED]mic,
 [EMAIL PROTECTED]   msi
where 1=1
and   mc.structure_id   =  50112
and   mc.segment3  != 'SPARE'
and   mc.global_name= 'US'
and   mc.enabled_flag   = 'Y'
and   mcs.global_name   = mc.global_name
and   mcs.category_set_name = 'PROD GROUP'
and   mic.category_set_id   = mcs.category_set_id
and   mic.category_id   = mc.category_id
and   mic.global_name   = mc.global_name
and   mic.organization_id   = 1
and   mic.inventory_item_id = msi.inventory_item_id
and   msi.organization_id   = mic.organization_id
and   msi.global_name   = mc.global_name
AND   msi.auto_created_config_flag = 'N'
AND   msi.item_type IN ('ATO MODEL','CONFIG SPARE','CONFIG
SUB','FEATURE PACK','PRODUCT LIST>$0','PTO MODEL','SPARE')
and   msi.inventory_item_status_code IN
('ENABLE-MAJ','ENABLE-NON','ENABLE-OPT','NONORD')
Please note that the tables referenced are remote tables and Oracle Apps
tables and not logging on it is possible.
Please suggest an appropriate refresh mechanism to see the records even
during refresh period.
Thanks in advance.

With Warm Regards



Siddharth Haldankar
Zensar Technologies Ltd.
Cisco Systems Inc.
(Offshore Development Center)
#  : 091 020 4128394
[EMAIL PROTECTED]
[EMAIL PROTECTED]
_
Cheer a special someone with a fun Halloween eCard from American Greetings! 
Go to  http://www.msn.americangreetings.com/index_msn.pd?source=msne134

--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: David Boyd
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: Oracle 9.2.0.4 on Gentoo

2003-10-24 Thread Mladen Gogala
Do you know of the minimum system requirements for Oracle "ten grands"?
My informaton tells me that 512MB RAM will be specified as a minimal  
requirement.
On 10/24/2003 11:44:53 AM, "Jesse, Rich" wrote:
More of an FYI than anything...

Kernel: 2.4.20-gentoo-r7  (from Gentoo 1.4 stage 1 tarball)
glibc:  2.3.2-r1
9.2.0.1 from the disks installed with the usual linking problems
mentioned
on various websites (ctx libs, etc.).  Since I didn't really care
about
running 9.2.0.1, I ignored the errors.  I d/l'd the 9.2.0.4 patch and
did
the usual installer upgrade, then patched to 9.2.0.4 -- without a
single
error or issue!
No kiddin', the damnable thing came through with flying colors, at
least on
the core DB stuff.  I've got a DB manually created on the first try,
configured networking (again, "manual" is the only way to fly), and
I'm up
and running.  No glibc flipping, no makefile hacking, no nothing.
I'm almost bold enough to try stripping everything in $OH/bin and
blindly
see if I can gain any significant performance.  Hey, I'm only on page
19 of
Cary's and Jeff's book...  :D
Just thought this was interesting enough to merit posting.  Perhaps
good
enough for a dev box for some.  Hey, Gentoo is already grid-enabled
with
distcc in Portage!  :)
Rich

Rich Jesse   System/Database Administrator
[EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Jesse, Rich
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: how is it possible

2003-10-24 Thread AK
Thanks Ron ,
This worked . But do you know why it happens . As I said its happening third
time with me . My unix screen behaves weired sometimes it doesn't print any
character I type and some time it prints characters which I never type ( in
this particular case ).

Thanks,
-ak

- Original Message - 
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, October 23, 2003 5:04 PM


>
> This generally happens when there is a CTL-H embedded in the filename.
Try
>
> mv *m* anotherfilename
>
> You should be able to get at it after that.
>
> Ron Thomas
> Hypercom, Inc
> [EMAIL PROTECTED]
> Each new user of a new system uncovers a new class of bugs. -- Kernighan
>
>
>
>   [EMAIL PROTECTED]
>   com  To:
[EMAIL PROTECTED]
>   Sent by: cc:
>   [EMAIL PROTECTED]Subject:  how is it
possible
>   .com
>
>
>   10/23/2003 04:49
>   PM
>   Please respond to
>   ORACLE-L
>
>
>
>
>
>
> This happening with me 3 rd time on this hp box . When I do ls -alt I can
see a file in current
> directory but when I try to open it (vi/cat ) it says no such file or
directory .  I am same user
> who created the file .. ( no permission problem )
>
> Any idea ??
>
> -ak
>
>
>
>
>
> /home/ak/myscripts/shell_scr $ ls -alt
> total 4
> drwxrwxrwx   2 ak   dba 96 Oct 23 14:40 .
> -rwxrwxrwx   1 ak   dba412 Oct 23 14:40 mon_scr
> drwxr-x---  10 ak   dba   1024 Oct 13 16:07 ..
>
>  /home/ak/myscripts/shell_scr $ cat mon_scr
> cat: Cannot open mon_scr: No such file or directory
>
>  /home/ak/myscripts/shell_scr $ cat ./mon_scr
> cat: Cannot open ./mon_scr: No such file or directory
>
> /home/ak/myscripts/shell_scr $
>
> /home/ak/shell_scr $ whoami
> ak
>
>
>
>
>
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Ron Thomas
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: AK
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: state objects

2003-10-24 Thread DENNIS WILLIAMS
Does anybody have a definition for the Oracle shared pool component "State
Object"? An Object that holds the state of something? Using Google, I get
some hints, but just wondered if someone has something definite.
 
Sultan - your question got my curiosity aroused. I'm sorry I lost your reply
that confirmed you were indeed looking at the SGA. 



Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Wednesday, October 22, 2003 8:59 AM
To: '[EMAIL PROTECTED]'


Sultan - Are you referring to the Oracle shared pool components that are
identified as state objects? A quick Google also revealed that Java has
state objects.



Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Wednesday, October 22, 2003 3:14 AM
To: Multiple recipients of list ORACLE-L


Can someone please explain what is 'state objects' in oracle and what is
that real work?
 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Re: dba interview questions

2003-10-24 Thread rgaffuri
its in the first book expert one on one. he talks about it on his webpage. its also in 
the concepts document. its just a diagram of oracle and the background processes. 

he says its the weeding out question he asks. maybe 1 in 10 get it right. 
> 
> From: DENNIS WILLIAMS <[EMAIL PROTECTED]>
> Date: 2003/10/24 Fri AM 11:29:25 EDT
> To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> Subject: RE: Re: dba interview questions
> 
> Ryan
>Would that diagram be in "Effective Oracle by Design" by Tom Kyte? Can
> you elaborate?
> 
> Dennis Williams
> DBA
> Lifetouch, Inc.
> [EMAIL PROTECTED] 
> 
> -Original Message-
> Sent: Friday, October 24, 2003 9:29 AM
> To: Multiple recipients of list ORACLE-L
> 
> 
> that question is diagrammed and answered in tom kytes new book. :) im
> waiting to get asked it. 
> 
> there is a new ault book out on interview questions. I dont think they are
> very tough. I think situational questions are better. Have a development DB
> set up with things for the applicant to do. 
> 
> I find that most employers ask the same easy questions. Particularly
> developer questions 
> > 
> > From: Kirtikumar Deshpande <[EMAIL PROTECTED]>
> > Date: 2003/10/24 Fri AM 09:49:26 EDT
> > To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
> > Subject: Re: dba interview questions
> > 
> > The problem with such lists is that the prospects also have those...
> > A few years ago Mike Ault published one. We used it to screen candidates
> via phone interviews. 
> > Two out of four I talked to gave me perfect answers: word to word from
> Mike's list. 
> > 
> > Use Conner's approach: Give the candidate a white/black board, and ask
> him/her to draw the SGA
> > with all it interal structures, all background processes, and explain how
> all this works
> > together. 
> > 
> > - Kirti 
> > 
> > 
> > --- system manager <[EMAIL PROTECTED]> wrote:
> > > Dear List,Can anyone send me a list of dba interview questions?
> > > 
> > > Thanks,
> > > 
> > > 
> > > _
> > > Free email with personality! Over 200 domains!
> > > http://www.MyOwnEmail.com
> > > Looking for friendships,romance and more?
> > > http://www.MyOwnFriends.com
> > > 
> > > 
> > 
> > __
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> > http://shopping.yahoo.com
> > -- 
> > Please see the official ORACLE-L FAQ: http://www.orafaq.net
> > -- 
> > Author: Kirtikumar Deshpande
> >   INET: [EMAIL PROTECTED]
> > 
> > Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> > San Diego, California-- Mailing list and web hosting services
> > -
> > To REMOVE yourself from this mailing list, send an E-Mail message
> > to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> > the message BODY, include a line containing: UNSUB ORACLE-L
> > (or the name of mailing list you want to be removed from).  You may
> > also send the HELP command for other information (like subscribing).
> > 
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: <[EMAIL PROTECTED]
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: DENNIS WILLIAMS
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line contai

RE: dba interview questions

2003-10-24 Thread DENNIS WILLIAMS
Bill
   So you are an HR person with a well-written job description in hand and a
stack of resumes on the other (how may would you say a job posting would
garner today -- 200?) It has been a long week of major and minor employee
issues and the hiring manager has begun making ugly noises about "when am I
going to see some candidates?". So you stuff the whole stack in your
briefcase with the illusion of a nice quiet evening to get some solitude to
really go through these resumes. But there are issues with your teenage
daughter and your wife's reaction to these issues, and you glance at your
watch, see it is 9 pm. and realize you meant to go through those resumes. So
you sit down, read the job description once, looks like Greek, read it
again, no better. Now you pick up the first resume and try to relate the
words on the job description to the candidate's experience. You say to
yourself, hmm . . this is going to be a long evening.

Dennis Williams
DBA
Lifetouch, Inc.
[EMAIL PROTECTED] 

-Original Message-
Sent: Friday, October 24, 2003 10:05 AM
To: Multiple recipients of list ORACLE-L


Mladen Gogala  scribbled on the wall in glitter crayon:

> Pre-packaged questions are always a bad idea. When a company needs a
> DBA, it should know what do they need him for. Do they need them to

but that would provide that the company actually know how to define job
duties and then convey them to HR who would then be able to screen
applicants on actual experience and not just groups of letters.

--
Bill "Shrek" Thater ORACLE DBA  
"I'm going to work my ticket if I can..." -- Gilwell song
[EMAIL PROTECTED]

One had to cram all this stuff into one's mind for the examinations, whether
one liked it or not. This coercion had such a deterring effect on me that,
after I had passed the final examination, I found the consideration of any
scientific problems distasteful to me for an entire year. - Albert Einstein
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Thater, William
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: DENNIS WILLIAMS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: VPN to database?

2003-10-24 Thread Jeff Herrick


We're doing it as I write this for a convention taking place
half-way across the country.

The setup is

Client: Browser (IE), Cisco VPN Client, Adobe Acrobat, JInitiator
Middle tier: 9iAS rel2 Forms and Reports Server on Win2K
Db tier: Oracle 8.1.7 on Win2K

All servers are on our private network. The only problem
we're experiencing is from sloppy network setup at the convention
center...we're dropping packets and the tunnel won't stay up. =8-(

But when the tunnel is up, the forms and reports work like
a charm since the addresses all resolve to hosts on the internal
network.

One problem we did run into was printingthey have an IP printer
set up on the convenion sub-net and they are not able to print
to it while they have the tunnel up (of course). The have to
save the .PDF's, shutdown the VPN client and then print.


Cheers

Jeff Herrick



On Fri, 24 Oct 2003, Paul Baumgartel wrote:

> We are an Application Service Provider--we maintain a set of servers in
> a colocation facility and our customers use our application via the
> Web.  Security is a paramount concern, of course, and only our Web
> server has a public IP address, with the application and database
> servers completely private.
>
> We supply a number of standard reports, but most of our customers want
> some custom reports as well.  We would like to give them access to our
> database, possibly over a VPN, but only if security can be maintained.
> I'd like to know if anyone has faced such a situation, and what kind of
> configuration (network/firewall/VPN/Oracle Net) might make such access
> possible.
>
> TIA,
>
>
>
> =
> Paul Baumgartel
> Transcentive, Inc.
> www.transcentive.com
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Paul Baumgartel
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jeff Herrick
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Oracle 9.2.0.4 on Gentoo

2003-10-24 Thread Jesse, Rich
More of an FYI than anything...

Kernel: 2.4.20-gentoo-r7  (from Gentoo 1.4 stage 1 tarball)
glibc:  2.3.2-r1

9.2.0.1 from the disks installed with the usual linking problems mentioned
on various websites (ctx libs, etc.).  Since I didn't really care about
running 9.2.0.1, I ignored the errors.  I d/l'd the 9.2.0.4 patch and did
the usual installer upgrade, then patched to 9.2.0.4 -- without a single
error or issue!

No kiddin', the damnable thing came through with flying colors, at least on
the core DB stuff.  I've got a DB manually created on the first try,
configured networking (again, "manual" is the only way to fly), and I'm up
and running.  No glibc flipping, no makefile hacking, no nothing.

I'm almost bold enough to try stripping everything in $OH/bin and blindly
see if I can gain any significant performance.  Hey, I'm only on page 19 of
Cary's and Jeff's book...  :D

Just thought this was interesting enough to merit posting.  Perhaps good
enough for a dev box for some.  Hey, Gentoo is already grid-enabled with
distcc in Portage!  :)

Rich

Rich Jesse   System/Database Administrator
[EMAIL PROTECTED]  Quad/Tech Inc, Sussex, WI USA
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jesse, Rich
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


  1   2   >