there,I run sql*plus on windows 2000 professional. I want to set a filedirectory for sql*plus so that when I write something in a file, it will be in my default file directory. What environment variable I will set for that? ...
I am with Windows XP and have some problems both with Firefox and IE. What browser you are using when accessing the home page and navigating the menus and tools? ...
Plz tell me.What the steps are useful for us while designing the database by Performance point of view.Like Proper indexing and table assing to specific tbalespace etc ...
what TCP ports are used in Dataguard, Dblink or SQL statement ...
I wondering what APEX variables are out there? I already know about APP_USER, APP_SESSION but I have a variable in one of my applications I look after called ACT_CRE_030_FLOW and it is called by using this:v('ACT_CRE_030_FLOW')I know that you call some APEX session variables that way and I cant find ...
Anyone know What table(s) or view(s) are the "Developer Comment" stored in?Robert ...
with reference to http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmtspit.htm#i1030332 If SET NEWNAME is used to specify a new location for an auxiliary set datafile, and there is an image copy at that location with an SCN such that it can be used in TSPITR, then the image copy will ...
I am looking at 10G and its says release 2 supports the following operating systems Oracle Enterprise Linux 5 (OEL5) Oracle Enterprise Linux 4 (OEL4) Red Hat Enterprise Linux 5 (RHEL5) Red Hat Enterprise Linux 4 (RHEL4) Red Hat Enterprise Linux 3 (RHEL3) Novell SUSE Linux Enterprise Server 10 (S ...
Is there a way to use PLSQL to pull Request Sets that are assigned to our custom responsibilities? I found the table FND_REQUEST_GROUP_UNITS but am looking on how to put together code to pull Responsibility name, request set name, and any other relevant info.Any help would be appreciated. ...
We have a report engine that does not write to the database.I would like to use SET TRANSACTION READ ONLY in order for that my transactions would not be assigned an undo segment, in order to save database resources.But as far as I understand, a readonly transactions can not write to the database, be ...
I've been trying to make my zoom slider work to zoom in compiz-fusion.The interesting thing is that when I run xbindkeys-config and hit "get button" or something of the sort, the slider doesn't generate any results. I've tried xev in the terminal and I don't get any results there either.Th ...
I am creating a user defined package (UDP) to bundle all the calls to DBMS_STREAMS_ADM and other such packages . Idea is that -- UDP will be compiled by strmadmin who has been granted DBA privileges . -- Compiled UDP can be executed by any user who has been granted execute on it. However, I am getti ...
Hi, does anyone know if setting all or some constraints deferred (using SET CONSTRAINTS ALL | constraintNames DEFERRED) and setting previous constraints immediate (using SET CONSTRAINTS ALL | constraintNames IMMEDIATE) affects performance?Where can I read about it? ...
I'm on a project that has a development db which app developers use to develop against. There is an identical (at some point in time) database for test and production. Unfortunately there are constraints in dev that have system generated names (e.g. SYS_C00123). The way we keep the two target DBs in ...
From the book "OCP: Oracle 8i SQL and PL/SQL Study Guide", I found a subject declaring that the following command:alter session set constraints deferredis able to defer all constraints in a session. However, I am unable to use that in Oracle 8.0.5. Who can explain that?null ...
I am trying to use execute immediate 'set constraints all deferred' within a procedure, but it doesn't appear to work. It does work from sqlplus. Has anyone run into this problem? ...
Here is a strange thing happened after a parent table is dropped using 'CASCADE CONSTRAINTS' option.When this option used, all foreign key constraints of child tables should be dropped. But the constraints are not dropped from sys.con$, they are dropped from sys.cdef$ table. so when query up any for ...
is there any way to temporarily set constraints off just for administrative tasks?what i want is something like this:sp_constraints off..some administrative stuff..sp_constraints onand at this point continue working with db in a standard constrained way. it doesn't matter if it's needed to put the d ...
On a 10.2.0.3.0, due to frequent ORA-04031 errors, we have been recommended to set _object_statistics=false in init.ora and bounce the database.Metalink Bug ID: 3519807Going through the available documentation on net, I found that this parameter would have same effect as setting STATISTICS_LEVEL=BAS ...
I found in an old cloudscape manual (4.0 from 2001) the SQL-J command to disable all constraints (and re-enable, etc...). The command is "SET CONSTRAINTS". However, I can't find anything recent on it (cloudscape or derby), and it doesn't seem to work (in derby). Maybe I'm looking in the wrong place. ...
I need a "leyhman's terms" explanation on UNION set operators.. I am working with a query that uses a UNION operator between two queries. I know what the Oracle documentation says about the different "set" clauses (as far as what they DO), but I do not have a firm undersatanding of why you would wan ...
I'm a newbie. I'd like to know if there's a way to find out what SQL queries are being made to my Database server at the server end.Is it possible that Oracle Database Manager logs this information (including the exact query/SQL)somewhere in its logs? How to enable such an option and/or view the rec ...
I am writing aggregate functions. For using ODCI along with OCI in C/C++.. what are the shared libraries which are required : i have oci.h & odci.h files but do not know what shared libraries are needed to use the ODCI interface.I am getting the error :ORA-06521: PL/SQL: Error mapping functionOR ...
DB Version:10gR2When collecting histograms, What do buckets mean? Are they set of rows? Which is most optimal bucket size when we collect Histograms as inbegin dbms_stats.gather_table_stats('SCOTT', 'EMP', estimate_percent=>100, no_invalidate=>FALSE, method_opt=>'FOR COLUMNS DEPT,CITY SIZE ...
hiCan anyone kindly explain what mutative triggers are in Oracle with example?what is frag in oracle? ...
http://www.oracle.com/technology/products/spatial/customer_success.htmlHello, released last month was a review of eSpatial iSMART product suite which works and expands on Oracle Spatial. This was completed by Professor Frederick Limp for GeoWorld and is available openly. Please add reference to the ...
I'm running 9.2.0.2 on HPUX11i.I'm using the Message Gateway with outbound propagation to MQ. What header properties can I set that will be interpreted by MQ?I followed table 18-4 from the Message Gateway book of the the Advanced Queueing manual. However, only the following parameters are being inte ...
I'm searching for my companty to find what SQL statements are executed by a database user/session, using the OEM or any Oracle Free tools. Offcourse, I have all needed access (meaning sysdba, etc...)Thanks in advance for responding to this answer Cordially,Arthur M. ...
When we are creating the constraints, we can mention any of the 4 states viz •ENABLE VALIDATE •ENABLE NOVALIDATE •DISABLE NOVALIDATE •DISABLE VALIDATE Question is : what is the default states, if we do not mention any one of those. If possible also give me the oracle document link. ...