Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQLplus question unusual behavior

RE: SQLplus question unusual behavior

From: Harvey Neil <Neil.Harvey_at_sx3.com>
Date: Tue, 21 Jan 2003 00:49:22 -0800
Message-ID: <F001.00535835.20030121004922@fatcity.com>


Possibly a FGAC policy with the UPDATE_CHECK flag set to FALSE. This would allow the current user to insert rows, but not necessarily view them. Are you connected to SQL*Plus as the table owner or a subordinate user?  

Check in the USER / DBA_POLICIES view where the OBJECT_NAME='FACILITY'

-----Original Message-----

Sent: 20 January 2003 15:31
To: Multiple recipients of list ORACLE-L

I am trying to update a small table from a remote table with sqlplus 9.2.0.2 .
It seems to indicate that it has inserted 233 row into my local table - however that doesn't really happen.
Am I suffering from a severe lack of caffine or is this really odd?  

SQL> select count(*) from facility;  

  COUNT(*)


         0  

SQL> insert into facility (select * from facility_at_dev <mailto:facility_at_dev> );  

233 rows created.  

SQL> select count(*) from facility;  

  COUNT(*)


         0  

SQL> commit;  

Commit complete.  

SQL> select count(*) from facility;  

  COUNT(*)


         0

--

This correspondence is confidential and is solely for the intended recipient(s). If you are not the intended recipient, you must not use, disclose, copy, distribute or retain this message or any part of it. If you are not the intended recipient please delete this correspondence from your system and notify the sender immediately.

No warranty is given that this correspondence is free from any virus. In keeping with good computer practice, you should ensure that it is actually virus free. E-mail messages may be subject to delays, non-delivery and unauthorised alterations therefore, information expressed in this message is not given or endorsed by Sx3 unless otherwise notified by our duly authorised representative independent of this message.

Sx3 is a trading name of Service and Systems Solutions Limited, a limited company registered in Northern Ireland under number NI 32979 whose registered office is at 120, Malone Road, Belfast, BT9 5HT.

--

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

Author: Harvey Neil
  INET: Neil.Harvey_at_sx3.com

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: ListGuru_at_fatcity.com (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). Received on Tue Jan 21 2003 - 02:49:22 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US