difference between Quisced and Suspended database (10g)

is someone can you please tell me what what is the difference between suspended and suspended database

check this http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/start.htm

everything was mentioned anout quised and suspend database sessions.

Tags: Database

Similar Questions

  • What is the difference between oracle and peoplesoft databases

    What is the difference between oracle and peoplesoft databases. How the tables of metadata between the two relate?

    According to my understanding, peoplesoft database exists as a schema on the oracle database.
    Please correct me if iam wrong.

    user4212454 wrote:
    ...
    The second statement, I realized that each schema created its specific use.
    for example, peoplesoft had 1000 objects (including the peopletools and application and system tables), each schema created above has access restrictions different on these database of 1000 objects. Am I wrong?

    Yes, each schema has its own purpose and the grant for objects of Peoplesoft. SYSADM is the owner of the objects of Peoplesoft with all rights. PS is the owner of one and same table, PSDBOWNER and the PEOPLE is granted to select three of these tables (PSOPRDEFN and PSACCESSPRFL PSDBOWNER).

    In addition, for DB2, what are the patterns of PeopleSoft?

    It is located in the installation documentation dedicated to the database you want to work on:
    http://download.Oracle.com/docs/CD/E15742_01/PSFT/HTML/docset.html

    The first statement, could you please elaborate on the part highlighted.

    A "Peoplesoft database" is nothing, it's terms to refer to a database containing everything you need to make a Peoplesoft application running.

    Nicolas.

  • What is the difference between "stop" and "suspend" for the deployment of the procedure?


    I'm running corrective plans and want to be able to suspend the proceedings and resume later.  I "stop" or "suspend"?

    Yes - the docs is misleading, I'll file a bug with the doc on this one here.  Stop cannot be resumed. Only suspend.  Thanks for the comments.

  • Difference between PeopleTools and Oracle database to remove?

    Hello

    I am a newbie to PeopleSoft/PeopleTools. I deleted a folder out of my Oracle database 10 g

    DELETE FROM table_name WHERE LASTNAME = 'smith ';.

    deleted 1 record

    Yet, when I connect on PeopleSoft Ent. The recording shows always when I do a search for the user? I did a refresh on the database and recorded in PeopleSoft and its still there? any help is appreciated.

    Again, I think that you must double check the name of the table that you have removed the employee of.

    Your examples of queries have been by name and not EMPLID. I assume you have the EMPLID. My first action would be to run the following query:

    Select * from PS_PAY_CHECK where emplid =?

    If you get even a SINGLE shot, return to your system administrator and tell him that you refuse to follow his instructions, because that his request to do is illegal. You don't want to be the scapegoat, if there is some sort of fraud that is going on here.

    If the person has not been paid on your system, and then deleting the person is possible.

    People Soft provides tools to achieve this. Execute us on a regular basis. This should be the direction that you are using. Again, ask your system administrator why delivered tools do not work. There should be some kind of rational way to achieve this. If it can't give you a valid reason, I would clean up my resume. The guy is asking you to do things that you should consider saying no to. Because you are a beginner, you should at least ask for the supervision of a more experienced PeopleSoft Developer.

    Assuming you have exhausted all your options for delivery and system administrator gave you a valid justification, you can run this script to generate a set of queries to tell you all the tables where this person exists.

    SELECT ' SELECT "' | A.TABLE_NAME | "' AS TABLE_NAME, COUNT (1) TO ' | A.TABLE_NAME | ' WHERE EMPLID = "?"; '.
    FROM DBA_TAB_COLUMNS HAS
    WHERE A.COLUMN_NAME = 'EMPLID.
    AND THERE ARE
    (SELECT 'X' FROM PSRECDEFN
    WHERE A.TABLE_NAME = ' PS_ ' | RECNAME
    AND RECTYPE = 0);

    Don't forget to replace the question mark with the EMPLID. This has generated about 5 000 queries in my system.

    Know that you are wandering in a very scary place here. There are some valid reasons for deletion in the scenes, but you should exhaust all other options, first.

    Paul

  • Difference between AL32UTF8 and UTF8

    Hello

    Our current database version is 10g with CHARSET = UTF8 to support Greek characters. However, the customer wants to switch to 11g (11.2.0.4.0) and the database of test created with CHARSET = AL32UTF8.

    Up to now to insert Greek characters, we have been offering script mentioning set NLS_LANG = AMERICAN_AMERICA. UTF8 and he has been inserting Greek characters correctly. However, it does not work with the new machine. If this setting, execution of the script gives error for the Greek characters "quoted string not properly done".


    I have two questions here:


    (1) is there a difference between UTF8 and AL32UTF8?

    (2) settings NLS_LANG works on character set of database right? What setting I put for NLS_LANG allowing to insert Greek characters or script windows or linux machine to run?


    Thanks in advance.

    Hello

    Answered below:

    -Oracle UTF8 is Unicode 3.0 revision in 8.1.7 and upward. AL32UTF8 is updated with Unicode versions in each major release, Oracle RDBMS 12.1 it is updated to Unicode 6.1,

    Apart from the difference in Unicode version the "big difference" between UTF8 and AL32UTF8 AL32UTF8 has build in support for "Additional characters", which are coded using "Surrogate pairs" (also wrongly called ' surrogate characters"'").

    Oracle UTF8 (Unicode 3.0) stores additional characters in the form of 2 characters, for a total of 6 bytes, using "modified UTF-8" instead of the "standard UTF - 8"(implemented in Oracle 9.2 and upward using AL32UTF8) 4 bytes for an extra character.

    This "modified UTF-8' is also called CESU-8 .

    Practically, this means that in 99% of UTF8 and AL32UTF8 data are the same for * storage * data. Only the additional characters differ in bytes/codes stored between UTF8 and AL32UTF8.

    -the necessary parameters are:

    LANG = el_gr. UTF8

    LC_ALL = el_GR.utf8

    NLS_LANG = 'GREEK_GREECE. AL32UTF8.

  • difference between BYTE and CHAR

    Hi all

    Oracle, as in syntax below, what is the difference between BYTE and CHAR used as size data type for the column NAME:

    CREATE THE CUSTOMER TABLE
    (
    NAME VARCHAR2 (11 BYTE),
    CUSTOMER_ID NUMBER
    )

    and

    CREATE THE CUSTOMER TABLE
    (
    NAME VARCHAR2 (11 CHAR),- or even VARCHAR2 (11)
    CUSTOMER_ID NUMBER
    )



    Rgds,
    PC

    First - do not use reserved words for column (NAME).

    If the database character set is UTF-8, which I believe is the default value in the recent version of Oracle. In this case, some characters take more than 1 byte to store in the database.

    If you set the field as VARCHAR2 (11 BYTE), Oracle will allocate 11 bytes for storage, but you can not actually be able to store 11 characters in the field, because some of them take more than one byte to store, for example, non-English characters.

    By setting the field as VARCHAR2 (11 CHAR) you tell Oracle to allocate enough space to store 11 characters, regardless of the number of bytes it takes to save each of them. I think that in Oracle 10g, 3 bytes per character were used.

    Kind regards

    Robert.

  • The difference between delete and insert transactions

    Hello

    How can I tell the difference between delete and insert in a process using Apex 5.0

    Best regards

    OraDev wrote:

    In a presentation table when you click the "Delete" button checked the database update triggers trigger I do not know why

    Do you really mean 'database trigger', or are you referring to a process of page APEX? Ensure that the tabular form MRU delete process conditional on the button DELETE and that the MRU update process is conditional on the "SAVE" button.

  • Difference between 'Form' and 'object '.

    I am writing today a guide in my native language and want to understand the difference between 'Object' and 'Form' for Illustrator. We have menu object in the Panel and can find a few options of forms under this menu.

    Also we program this object is:

    In computing, an object can be a variable, a data structure, a function or a methodand as such, is a location in memory value and possibly referenced by an identifier.

    In class-based object-oriented programming paradigm, 'object' refers to an instance of a class where the object can be a combination of data structures, functions, and variables.

    Relational database management, an object can be a table or column or an association between data and entity of database (such as the age of a person concerning a particular person). [1]

    So my question is: If we create a form in artificial intelligence can we call it 'object' and vs. ?

    There is menu item "Create object mosaic" option which works only with raster images. This is why any other object in artificial intelligence is not object?

    Thank you

    "In illustrator is an 'Application based on the objects' any item placed in the drawing area that you can select is called" object "where as".

    a form is an object of two dimension.

    We could say : each form is an object , BUT not every object is a form.

  • What is the difference between Bridge and Lightroom?  Should I have them both?

    What is the difference between Bridge and Lightroom?  Should I have them both?

    Hi MyYawrood,

    If you plan to expand your files only camera raw, then no, you don't need both. Camera Raw, which bridge lance when you select a raw in Bridge file has the same characteristics as Lightroom.

    That's where the similarity ends, however. Bridge is a file browser. You can organize and view the files on your hard drives connected. Bridge knows nothing about files that are not connected. Bridge can preview more Adobe files, regardless of the type of file and is a 'bridge' between applications. It will show also the icons for other types of files created in any application. Lightroom creates a database of a few image formats and knows about them, even if the disk they are on is in offline mode. It cannot handle most types of file formats, however. Lightroom has a robust for print production and publication Center. Bridge doesn't. Lightroom also has Mobile of Lightroom to make some fundamental changes to the photos on your phone or tablet. Bridge doesn't.

    So if you need both depends on what you do on your computer. I absolutely use Bridge / Camera Raw/Photoshop and Lightroom/Lightroom Mobile.

  • Difference between Gemfire and SQLFire

    Anyone can list the differences between Gemfire and SQLFire.

    Since both are targeted and databases as an object model and another model more than SQL. Apart from this basic difference if I can get some differences and the reason behind the two products, which would be much appreciated.

    Hello
    GemFire has a slightly different set of objectives: it is designed to be much more flexible (buttons plus) designed to achieve possibly higher performance in some scenarios. For example, you can do a caching prioritized with GemFire (client applications can incorporate a local cache) and it is rich in favour of publication / subscription semantics. Thus, it is possible to realize the event in real time, more scalabe engine architecturees with GemFire more than it is with SQLFire.
      
    On the other hand, SQLFire with relational semantics is easier to understand with a query more powerful engine and support for referential integrity provided out of the box.
      
    Level positioning, GemFire could be better adapted to the 'green field' applications that lend themselves to a design of K - V and SQLFire is best suited for applications where the data model (and so mark requirements) are more complex.
  • What is the difference between Oracle and MySQL

    Hello

    I would like to know the major difference between Oracle and MySQL. I have a project to generate tables of database XML files, I used the functions XML built oracle XMLELEMENT, XMLAGG XMLATTRIBUTES, XMLFOREST. I really want to know if these functions (or) similar functions are taken into charge/availabe in MySQL.

    I'm having a hard time finding better linux distro to install Oracle11g, so I intend to move to MySQL. Please help, thanks in advance.

    Supported operating system versions are documented - http://docs.oracle.com/cd/E11882_01/install.112/e24321/pre_install.htm#CIHFICFD

    HTH
    Srini

  • Differences between OID and OUD

    Hello gurus,

    What are the differences between OID and OUD.

    Why Oracle release two LDAP directories. Please let me know.

    These two are two LDAP directories.

    Where IO is the dependent database and OUD is not.

  • The differences between CAT and table TAB

    1. What is the difference between cat and TAB?
    2. why TAB does not exist in dict?
    3. that the same situation for cat and TAB?

    Thanks a lot for your answer kindly.

    sys@ORCL > cat desc
    Name Null? Type
    ----------------------------------------------------- -------- ------------------------------------
    TABLE_NAME NOT NULL VARCHAR2 (30)
    TABLE_TYPE VARCHAR2 (11)

    sys@ORCL > tab desc
    Name Null? Type
    ----------------------------------------------------- -------- ------------------------------------
    TNOM NOT NULL VARCHAR2 (30)
    TABTYPE VARCHAR2 (7)
    NUMBER OF CLUSTERID

    sys@ORCL > select * dict where table_name = "CAT";

    TABLE_NAME COMMENTS
    ---------- -----------------------------------
    Synonym of cat for USER_CATALOG


    sys@ORCL > select * dict where table_name = 'USER_CATALOG ';

    TABLE_NAME COMMENTS
    -------------------- -----------------------------------------------------------------
    USER_CATALOG Tables, views, synonyms, and sequences belonged to the user

    You've posted enough to know that, for each position, you will need to provide your version of Oracle 4-digit (SELECT * FROM V$ VERSION)
    >
    1. What is the difference between cat and TAB?
    2. why TAB does not exist in dict?
    3. that the same situation for cat and TAB?
    >
    1, 2, 3 - TAB has been deprecated then don't use it.

    Definitioni of base for those located in the reference database
    http://docs.Oracle.com/CD/B28359_01/server.111/b28320/statviews_2127.htm#sthref1535
    >
    CAT

    CAT is a synonym for USER_CATALOG.
    . . .
    USER_CATALOG

    USER_CATALOG lists all the tables, views, clusters, synonyms, and sequences belonged to the current user. Its columns are the same as those of "ALL_CATALOG".
    . . .
    DICT

    DICT is a DICTIONARY.
    . . .
    DICTIONARY

    DICTIONARY contains descriptions of data dictionary tables and views.
    . . .
    TAB

    TAB is included for compatibility. Oracle recommends that you do not use this view.
    >
    TAB has been deprecated. He looks like the cat because it shows the USER objects, but it does not show the sequences, like the cat.

    If you look at the source code for the views TAB and USER_CATALOG you can see the differences. This code is copyrighted by Oracle Corporation, all rights reserved.

    /* Formatted on 1/1/2013 8:50:07 AM (QP5 v5.115.810.9015) */
    CREATE OR REPLACE FORCE VIEW SYS.TAB
    (
       TNAME,
       TABTYPE,
       CLUSTERID
    )
    AS
       SELECT   o.name, DECODE (o.type#,
                                2,
                                'TABLE',
                                3,
                                'CLUSTER',
                                4,
                                'VIEW',
                                5,
                                'SYNONYM'), t.tab#
         FROM   sys.tab$ t, sys."_CURRENT_EDITION_OBJ" o
        WHERE       o.owner# = USERENV ('SCHEMAID')
                AND o.type# >= 2
                AND o.type# <= 5
                AND o.linkname IS NULL
                AND o.obj# = t.obj#(+);
    . . .
    /* Formatted on 1/1/2013 8:54:45 AM (QP5 v5.115.810.9015) */
    CREATE OR REPLACE FORCE VIEW SYS.USER_CATALOG
    (
       TABLE_NAME,
       TABLE_TYPE
    )
    AS
       SELECT   o.name,
                DECODE (o.type#,
                        0, 'NEXT OBJECT',
                        1, 'INDEX',
                        2, 'TABLE',
                        3, 'CLUSTER',
                        4, 'VIEW',
                        5, 'SYNONYM',
                        6, 'SEQUENCE',
                        'UNDEFINED')
         FROM   sys."_CURRENT_EDITION_OBJ" o
        WHERE   o.owner# = USERENV ('SCHEMAID')
                AND ( (o.type# IN (4, 5, 6))
                     OR (o.type# = 2 /* tables, excluding iot - overflow and nested tables */
                         AND NOT EXISTS
                               (SELECT   NULL
                                  FROM   sys.tab$ t
                                 WHERE   t.obj# = o.obj#
                                         AND (BITAND (t.property, 512) = 512
                                              OR BITAND (t.property, 8192) = 8192))))
                AND o.linkname IS NULL;
    
  • What is the difference between EPMA and Essbase Studio

    If the two are not used to design applications?

    And a really need Essbase Studio?
    What is the difference between EPMA and Essbase Studio

    ^ ^ ^ It's a little confusing, isn't? As far as I understand the role of EPMA, it is a way to share dimensions and common data between several products Oracle EMP including Planning, Essbase and HFM. In fact, I don't know if other products live in EPMA. What is EPMA not have is a great way to supply or manipulate the dimension and fact tables (or files). Oh, there are tables of the interface, but you will write the code/use the utility of dimension EPMA to load dimensions. I must say that I never tried to load through EPMA data so that someone else will have to pronounce on it. Once the dimensions are built, you can deploy Essbase (and other products) of common and specific to the database dimensions.

    Studio is the tool you will use to go against a data warehouse, or something terribly close a data warehouse to build Essbase databases. Just for Essbase - HFM, planning, etc. are not the targets of the Studio release.

    What gets confusion / intriguing, is that when EPMA deploy Essbase apps, it uses Studio under the covers to do. So the interesting implementations where people use Studio (which is much more flexible than EPMA because it is a development tool as opposed to a dimension/data management application) to read the tables, EPMA interface (and as far as I know, the EPMA base tables) and create Essbase applications like that.

    If you think that there is overlap, I agree with you, but you can see that they are not the same.

    And a really need Essbase Studio?

    ^ ^ ^ Do not use Studio to build Essbase databases. You can go hog wild in EAS with loading SQL rules if you want, even if at some point it will be probably easier and simpler to build in the Studio. Although the Studio has been mentioned as the replacement of EAS for awhile, I suspect the effort required to build a database in Studio will keep around for quite a while EAS or Studio Lite will be out. There is a lot to say (sometimes) for the incredible flexibility EAS/Essbase-Studio requires a more methodical approach and EPMA has a very formal set of standards and methods.

    Phew, I'm sorry, I wrote a book on this subject and I bet you get a lot of differences of opinion on that.

    If you are interested in the Studio, you could do well to take a copy of 'Look smarter than you are with Oracle Essbase Studio 11' of Glenn Schwartzberg. I don't get a penny from the sale while I was among the writers of copy (Hey, I got a mention in the acknowledgements). It's a good book and an excellent introduction to the tool.

    Kind regards

    Cameron Lackpour

  • difference between exipre and obsolete

    Hi all

    WHAT IS THE DIFFERENCE BETWEEN exipre and obsolete WITH REFERENCE RMAN EXACT.

    Hello

    Suppose that I kept the political 1.means retantion if I took 2 obsolete ways, become so first of all backups that are no longer needed.
    but off 2 backups, suppose I lost the last backup & backup only obsolete, so I can I use this outdated backup to recover the database. ?

    Kindly help.

    Kind regards

Maybe you are looking for