Oracle 11g Database Scripts necessary analysis

Hi all

I don't have access to the Console EM Oracle.

I know that without having access to it I can always monitor DB activities and health checks like memory usage, work of long-running queries, use of the CPU etc.

Please you can help by telling me how to do it. (By some sql scripts or methods using SqlDeveloper feature will do also).

Thank you

Vishwamber Shetty

> I'm looking for using GOOGLE

I don't know why you don't not found db administration of Google scripts, but when I said "oracle database administration scripts" on Google, I found great sources such as:

http://www.Oracle-base.com/DBA/scripts.php

http://gavinsoorma.com/category/scripts/

http://www.dbatoolz.com/SQL-scripts

and many others.  You will need to download these scripts.  Most of them is made for Linux environment.  If you want to learn and to test them, just create databases for each source test according to the mentioned Oracle version and you did.  I would strongly suggest to have a separate database for each source to better test and learn.

In addition, some sites of books provide too good scripts.  These scripts are code in action of their examples of books.

Concerning

Girish Sharma

Tags: Database

Similar Questions

  • Import of XML in the oracle 11g database

    I have some difficulty parsing of an XML file in the oracle 11g database.

    Currently using Oracle 11 g Express Edition (XE)

    Here's how my XML file looks like this:


    <? XML version = "1.0" encoding = "UTF-8" standalone = "yes"? >
    -< AccountMap xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" >
    -< account >
    -< AccountMapping >
    < AccountID > 0000000000000 - 000 < / AccountID >
    < AccountName > XLS < / AccountName >
    Excel < AccountType > < / AccountType >
    < AccountOwner > system < / AccountOwner >
    < / AccountMapping >
    -< AccountMapping >
    < AccountID > 0000000000000 - 001 < / AccountID >
    < AccountName > XLSS < / AccountName >
    Excel2 < AccountType > < / AccountType >
    System2 < AccountOwner > < / AccountOwner >
    < / AccountMapping >
    -< AccountMapping >

    and so now the file continues... I have the xml file that is saved on my hard drive

    I created a package in SQL Developer

    create or replace
    PACKAGE XML_FILEHANDLER AS

    type TRecord is (record
    Account_ID varchar2 (100)
    , Varchar2 (100) AccountName
    , Varchar2 (30) AccountType
    , AccountOwner varchar2 (100)
    );

    type TRecordTable is table of the TRecord;

    getRows function (p_directory in varchar2, p_filename in varchar2) return TRecordTable pipeline;

    END XML_FILEHANDLER;

    -BODY

    create or replace
    PACKAGE BODY XML_FILEHANDLER AS

    getRows function (p_directory in varchar2, p_filename in varchar2) return TRecordTable AS pipeline

    nb_rec NUMBER: = 1;
    tmp_xml CLOB.
    tmp_file CLOB.
    REC TRecord;

    BEGIN

    DBMS_LOB.CREATETEMPORARY (tmp_file, true);
    tmp_file: = dbms_xslprocessor.read2clob (p_directory, p_filename);

    recomm. Account_ID: = regexp_replace (tmp_file, '. * <>(. *) Account_ID < / Account_ID >. *', '\1', 1, 1, 'n');
    recomm. AccountName: = regexp_replace (tmp_file, '. * < AccountName >(.*) < / AccountName >. *', '\1', 1, 1, 'n');
    recomm. AccountType: = regexp_replace (tmp_file, '. * < AccountType >(.*) < / AccountType >. *', '\1', 1, 1, 'n');
    recomm. AccountOwner: = regexp_replace (tmp_file, '. * < AccountOwner >(.*) < / AccountOwner >. *', '\1', 1, 1, 'n');

    loop

    -This regexp is instance (s) of this model: "<? XML...? ' > < root_tag >... < / root_tag >.
    tmp_xml: = regexp_substr ([tmp_file, ' < \?xml[^?] +------? > \s+ < ([^ >] +) >. *? < / \1 > ', 1, nb_rec, 'n');
    When the output length (tmp_xml) = 0;
    -dbms_output.put_line (tmp_rec);
    nb_rec: = nb_rec + 1;

    SELECT Account_ID AccountName, AccountType, AccountOwner
    in rec. Account_ID, rec. AccountName, AccountType rec. rec. AccountOwner
    from xmltable)
    "Accounts/AccountMapping" in the way of xmltype (tmp_xml) columns
    Path of varchar2 (100) Account_ID 'Account_ID '.
    , Path of varchar2 (100) AccountName "AccountName".
    , AccountType varchar2 (30) path 'AccountType '.
    , Path of varchar2 (100) AccountOwner "AccountOwner.
    );

    line (CRE);

    end loop;

    DBMS_LOB.freeTemporary (tmp_file);

    GetRows END;

    END XML_FILEHANDLER;

    -I call my function using the following sql query

    Select * from table (XML_FileHandler.getRows ("XML", "test.xml"));

    Here is the error I get

    ORA-29283: invalid file operation
    ORA-06512: at "SYS." UTL_FILE", line 536
    ORA-29283: invalid file operation
    ORA-06512: at "XDB". DBMS_XSLPROCESSOR', line 265
    ORA-06512: at "user. XML_FILEHANDLER', line 13
    29283 00000 - "invalid file operation.
    * Cause: An attempt was made to read from a file or a directory which is
    not exist, or the file or directory access was denied by the
    Operating system.
    * Action: Check access privileges to the file and directory on the file system
    and if reading, check that the file exists.

    I did the following

    -Provided appropriate access to the user (read, write), including directory access rights
    -ensure that the directory exists
    -to ensure the existence of the file

    I have searched all over google and metalink but am unable to get this to run... Help, please!

    >
    SELECT Account_ID AccountName, AccountType, AccountOwner
    in rec. Account_ID, rec. AccountName, AccountType rec. rec. AccountOwner
    from xmltable)
    "Accounts/AccountMapping" in the way of xmltype (tmp_xml) columns
    Path of varchar2 (100) Account_ID 'Account_ID '.
    , Path of varchar2 (100) AccountName "AccountName".
    , AccountType varchar2 (30) path 'AccountType '.
    , Path of varchar2 (100) AccountOwner "AccountOwner.
    );
    >
    implement

    SELECT Account_ID, AccountName, AccountType, AccountOwner
    into rec.Account_ID, rec.AccountName, rec.AccountType, rec.AccountOwner
    from xmltable(
    'AccountMap/Accounts/AccountMapping' passing xmltype(tmp_xml) columns
    Account_ID varchar2(100) path 'Account_ID'
    , AccountName varchar2(100) path 'AccountName'
    , AccountType varchar2(30) path 'AccountType'
    , AccountOwner varchar2(100) path 'AccountOwner'
    );
    
    SQL> SELECT Account_ID, AccountName, AccountType, AccountOwner
      2  --into rec.Account_ID, rec.AccountName, rec.AccountType, rec.AccountOwner
      3  from xmltable(
      4  'AccountMap/Accounts/AccountMapping' passing
      5  xmltype('
      6  
      7  
      8  
      9  0000000000000-000
     10  XLS
     11  Excel
     12  System
     13  
     14  
     15  0000000000000-001
     16  XLSS
     17  Excel2
     18  System2
     19  
     20  
     21  ')
     22  columns
     23  Account_ID varchar2(100) path 'Account_ID'
     24  , AccountName varchar2(100) path 'AccountName'
     25  , AccountType varchar2(30) path 'AccountType'
     26  , AccountOwner varchar2(100) path 'AccountOwner'
     27  );
    
    ACCOUNT_ID                                                                       ACCOUNTNAME                                                                      ACCOUNTTYPE                    ACCOUNTOWNER
    -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ------------------------------ --------------------------------------------------------------------------------
                                                                                     XLS                                                                              Excel                          System
                                                                                     XLSS                                                                             Excel2                         System2
    
    SQL> 
    

    AccountID use AccountID not Account_ID

    Account_ID varchar2(100) path 'AccountID'
    

    Published by: Alexandr on August 9, 2012 12:35 AM

  • sample oracle 11g database

    1st of all thank you for clicking on my post. I am new to Oracle thouth so many post where I had the opportunity.

    Can anyone help with the example of the name of databast or link to Oracle 11 g Express edition. I have a history of MS SQL Server 2005/2008 and I am very new to Oracle. I had the opportunity to work on Oracle between I want practical as I practiced on AdventureWorks for SQL Server.

    In addition, if you have links of some really good tutorial for SQL and PL SQL oracle 10 g or 11 g so please help with even :)

    You are in the right place, my friend. Create an OTN account & get below...

    * 11g XE (Express Edition) *-http://www.oracle.com/technetwork/products/express-edition/downloads/index.html

    SQL Developer - http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html
    It's the free IDE from Oracle.
    Currently I use both of them for my personal practice.

    Oracle documentation "* the Bible of the Oracle;
    10g - http://www.oracle.com/pls/db102/homepage
    11g - http://www.oracle.com/pls/db112/homepage
    For all materials of the Oracle, I consider that the master link is - http://tahiti.oracle.com/

    Please let me know if you have other concerns.

    Vanessa B.

  • Conversion problem 8i to oracle 11g database timestamp

    Hello
    I have an interface that migrates data from 8i to Oracle 11 g server. I use ODI 10.1.3.5 version for this migration.
    When we try to send the timestamp from 8i to 11g, time stamp values are coming as parag 00:00:00.
    I tried almost all the functions of conversion posible as to_timestamp (tochar(field,format), format).
    The above mentioned is the last conversion I used which is insert 0 in the timestamp.
    Please let me know the resolution if someone has experienced the same problem.

    Thank you
    Naveen

    Hello

    Maybe you can try with this...

    Add a topology for the JDBC url property.

    Key = oracle.jdbc.V8Compatible
    Value = true

    Thank you
    Fati

  • How to change the size of the archivelog file in oracle 11g

    Hello

    In my oracle 11g database within the flash recovery area how to increase the size of each file, now it 41 MB per file iits name is o1_mf_1_161_8mfpwtbj_.arc how to take it
    the understandable name.

    Thanks and greetings
    hai,
    Thanks for your information
    

    If your question is answered, mark the thread as answered and clean up the forum

  • Download oracle 11g using .torrent files

    Hello
    can someone tell me where I can get the full version of oracle 11g database the .torrent file?

    Thanks in advance,
    Thomas k

    Try

    http://www.torrentz.com/abfb0ad4d9a4310bae1ba766f65878d0ab0514ed
    http://ThePirateBay.org/torrent/4768896/Oracle_11g_Release_1_Full_Version

    Kind regards
    Ludmilla amine
    http://oracleracexpert.blogspot.com
    [Click here to learn the import/export Transportable tablespace | http://oracleracexpert.blogspot.com/2009/08/transportable-tablespace-export-import.html]

  • How to create the new database in oracle 11g

    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    870692 wrote:
    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    Be sure to distinguish between the terms and the database schema. Other products, make them bad. It would be a HR diagram (or a user, which is the same in Oracle). If you do not need to use the database Wizard, unless you are working with a new host with no database.

    A simple way would be to get the DDL to create the HR schema and modify it for your own. It can be extracted from your database in several ways, or you can copy the hr_cre.sql to your own script and change. The two ways are educational, and you can google for instructions.

  • Oracle 11g RAC can support 2 separate databases?

    1. can you Oracle 11 g RAC support 2 separate databases because it requires to SCAN ip cluster with a port number unique listener?
    2. Oracle 11.2 database connections will work correctly if I install a mandatory DNS server in Oracle RAC servers?
    I'm leading a team for a project of 11g and appreciate the answers.
    Thank you
    Satish.

    Oracle 11g RAC will support the 2 separate databases because it requires to SCAN ip cluster with a port number unique listener?

    YES

    Oracle 11.2 database connections will work correctly if I install a mandatory DNS server in Oracle RAC servers?

    YES

  • Migrate the data base sybase HR peoplesoft on oracle 11g

    Hi all

    We're looking for sybase 12 migration to Oracle 11 g. We are not sure on what path to choose for this migration to. THS sybase Database is about 55 GB. Here are a few questions. Please let me know. The downtime on this database cannot be more than 2 days at max.

    1. What is the fastest way and to do this, if there is one?
    2. all the Documentation on the migration steps?
    3. do we have to use any tools 3rd part for this?
    4 can we reach the migration of data with sql loader, if so is it the way suggested to do this, and is there a documentation on that?

    I tried developer sql to do the migration, but it doesn't go well and finally found that is not the way to migrate a database with peoplesoft, here is the link environment to explain more about what I've done with sql developer.

    If there are any other necessary information, link below has almost all of the information.

    Re: Migration of HRMS peoplesoft sybase database to oracle 11g

    Thank you
    Murielle

    (1) build an Oracle system demo patched for the same level of output than the current system of production.
    (2) launch the application designer and compare the production system for the demonstration for you system can capture changes.
    (3) load a custom table with the tables listed in the MVPRDEXP. EXP in the production system. Run a script to create a script to export for all PSRECDEFN where the RECTYPE is 0. This identifies all application data tables. You may want to dms export large tables in parallel.
    (4) DMS import the exported data in the Oracle instance.
    (5) re - apply changes.

  • Developer of form for oracle 11g (win)

    Hi all, I have worked on oracle 9i and used with the developer 6i. now, I am more civilized :) to oracle 11g (win32_11gR1_database_1013). It is installed properly. now, I need to do some development projects, as I did before. Please guide me what development tool will be ideal for this version of oracle installed and where to can download it. Thanks in advance.

    kashif_ashfaq wrote:
    This link does not work. There is change in the appearance of the oracle site. Please advise according to the new interface.

    Yes, it's a very confusing page. Here is the translation of this page:

    (1) If you want the version 10 gr 2 Developer of forms, find the line that reads "Oracle Developer Suite 10 g (10.1.2.0.2) (including forms and Designer)" and then click on the link "Windows". On the resulting page, accept the agreement and download the two files zip to developers. (I urge you also to read the installation instructions at http://download.oracle.com/docs/cd/B25016_08//doc/dl/core.htm.)

    (2) If you want the latest version, click the link that is provided in red and underlined. Scroll down to the part that shows the forms download and download the 4 discs for WIndows. ALSO, make sure that you have the following installed (most of which you get from the same page)

    * WebLogic Server
    * Deposit creation utility
    * Identity management
    * Wizard for the SSO metadata repository
    * Identity management 10 g 3
    * Oracle database

    (3) you can also get it yourself. Exploration is half the fun in Oracle (and a quite necessary skill). One way possible: follow the bouncing ball

    http://OTN.Oracle.com
    -> Products (main menu on the left): development tools (link)
    -> Traditional tools (Portal Central region): forms (link)
    -> Downloads (extra area on the right side): forms (link)

    When there, read* and follow the instructions carefully.

    In addition, you can other research tools. JDeveloper/ADF and Application Express come to mind.

  • Oracle 11g 11.2.0.1 connect to Forms 6i [32 bit] Version 6.0.8.11.3 (Production)

    Hello

    I set up a new server with Windows 8r2. Install Oracle 11 g 64 bit.

    Mounted 10 32-bit Desktop windows forms [32-bit] Version 6.0.8.11.3 (Production).

    I am able to connect to Oracle 9i. but I want to connect to Oracle 11g

    Are there measures where I can solve my problem.

    already had made the following changes to the server

    C:\ > sqlplus/nolog

    SQL > connect / as sysdba

    Conectado.

    SQL > shutdown immediate

    SQL > startup restrict

    SQL > alter database character set internal_use UTF8;

    SQL > shutdown immediate

    SQL > startup

    Under sqlnet.ora I changed

    NAMES. DIRECTORY_PATH = (TNSNAMES, EZCONNECT)

    SQLNET. ALLOWED_LOGON_VERSION_SERVER = 8

    SQLNET. ALLOWED_LOGON_VERSION_SERVER = 8

    SQLNET. ALLOWED_LOGON_VERSION_CLIENT = 8

    I'm still not able to connect.

    Sandy

    1. what error message do you receive forms 6i when you can not connect

    2. what level of Forms 6i patch do you have?  A more recent patch level may be required.

    Tony

  • That means 1z0-117 oracle 11g sql tuning now say it includes v12 addition v11

    Hello

    I did the 1z0-117 sql tuning review once.

    Not too far away.

    I studied under and turned off for a while.

    I anticipate taking in 1 month.

    However, I just noticed that the oracle site says 1z0-117 also said that v12 is also included for consideration:

    Oracle 11g sql tuning.

    It makes no sense at all.

    Roger

    However, I just noticed that the oracle site says 1z0-117 also said that v12 is also included for consideration:

    Oracle 11g sql tuning.

    Unless you are looking for something I'm not, what actually is the 1Z0-117 page says: "validated against: review has been validated against Oracle Database 11g Release 2 version 11.2.0.1.0 and database Oracle 12 c 12.1.0.1.0"

    What they actually mean by it is that someone went through all the issues and and asked the question "is still a relevant issue for the release of 12 c to Oracle?'." "  If they find issues that are not valid because of an update/change, then the question will be removed from review (or changed) so that someone who has used 12 c but not 11 g will not at a disadvantage.

    This is * No * means that Oracle has added questions to the review of the capabilities that were introduced in version 12 c.

  • Oracle 11g R2 on Oracle Linux 7 loading problems

    It drives me crazy!  I use VMPlayer (6.0.4 build-2249910) to load the Oracle 7 and have no problems at all.  However, when I install Oracle 11 g R2, that's when I encounter problems (just loading software; not to create a database at the moment).  First of all, let me tell you, I'm not some process that I found on the internet several times.  There are slight differences in some of them, but essentially, I used the website below to install Oracle 11 g 2 on Oracle Linux 7:

    ORACLE-BASE - Oracle Database 11g Release 2 (11.2) Installation on Linux Oracle 7 (OL7)

    When running through the installation, I first encountered the ctx error:

    ctx.png

    I could find anything on this subject, so I continued in this way.  To learn more about this later...

    The next error I get is:

    emagent.png

    This second error was easy to be supported by the following:

    During the connection phase, you will encounter an error invoking the file 'ins_emagent.mk '. To resolve this problem, change the "$ORACLE_HOME/sysman/lib/ins_emagent.mk", do a search and replace the line below.

    FROM:

    $(MK_EMAGENT_NMECTL)

    TO  :

    $(MK_EMAGENT_NMECTL) -lnnz11

    Click 'Retry '.

    Now took care of the issue emagent.

    On the issue of CTX, I can't find anything on this at all!  I looked in the log file and found the following detail:

    INFO: mv /u01/app/oracle/product/11.2.0/bin/ctxlc /u01/app/oracle/product/11.2.0/bin/ctxlcO f

    INFO: mv ctxlc /u01/app/oracle/product/11.2.0/bin/ctxlc

    INFO: chmod 751 /u01/app/oracle/product/11.2.0/bin/ctxlc

    INFO: gcc o ctxhx-m64-L/u01/app/oracle/product/11.2.0/ctx/lib/-L/u01/app/oracle/product/11.2.0/lib/-L/u01/app/oracle/product/11.2.0/lib/stubs/ /u01/app/oracle/product/11.2.0/ctx/lib/ctxhx.o-L/u01/app/oracle/product/11.2.0/ctx/lib/ - lm-lsc_fa-lsc_ex-lsc_da-lsc_ca - lz - lctxhx-Wl,-rpath,/u01/app/oracle/product/11.2.0/ctx/lib-lsnls11-lnls11-lcore11-lsnls11-lnls11-lcore11-lsnls11-lnls11-lxml11-lcore11-lunls11-lsnls11-lnls11-lcore11-lnls11 ' cat / u01/app/oracle/product/11.2.0/lib/sysliblist

    INFO: '

    INFO: /lib64/libstdc++.so.5: refers to 'memcpy@GLIBC_2.14' the undefined

    collect2: error: ld returned 1 exit status

    NEWS: make: * [ctxhx] error 1

    INFO: End of the generated process exit.

    INFO: ----------------------------------

    INFO: Exception thrown from action: do

    Exception name: MakefileException

    Exception string: error in invoking target 'install' of makefile ' / u01/app/oracle/product/11.2.0/ctx/lib/ins_ctx.mk'. See ' / u01/app/oraInventory/logs/installActions2014-11-28_12-45-46PM.log' for details.

    The exception severity: 1

    It seems to be hung on the reference to "memcpy@GLIBC_2.14".  I found a few web references on this, but I don't think that they apply given that sites speak other Linux distributions.

    What bothers me the most about it is that I use everything which is Oracle (except VMPlayer), but I get errors that I don't think that should be the case because there is nothing else than the Oracle!

    Is there something I can add to the command 'gcc' or the make file that will get this work?

    BTW: I think that I will not use CTX with my DB, then will I get in trouble if I create a database with this error CTX?

    Thanks in advance!

    It drives me crazy!

    That's because GR 11, 2 is not certified or supported on Linux 7 (no matter what claim of third-party sites or blog-see the subheading of the blog). Only 12cR2 is http://docs.oracle.com/database/121/LADBN/toc.htm#LADBN101

    So, you can either 12cR2 (1) installation on Linux 7 by following the steps of the official installation guide or (2) downgrade your operating system Linux 5 or 6 of Linux to install 11 GR 2 (Linux 6 requires 11.2.0.3 or higher - http://docs.oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm#CHDFHIEA)

  • Character set US7ASCII AL32UTF8 migration to Oracle Applications database

    What is the best method to get the character set migration of Oracle Applications database?

    The options available are

    (1) export and import

    (2) CSALTER

    (3) DMU

    Database - 11g

    Applications - R12

    Please suggest some tips and recommendations.

    Kind regards

    Nordine

    Post edited by: e0d0dacd-a343-414e-bfc0-aff53eaab398

    Nordine salvation,

    I suggest you to refer the link: "How do I convert the character set for Oracle R12.1.1 running on 11.0.6 database Oracle US7ASCII' as it is very relevant to you."

    Response to your previous post would be:

    S ' stick to a plan

    -Try all of the activity on the TEST server for yourself

    -Troubleshoot and debug all the question from A - Z

    -On the successful implementation, make a backup of the Production and move the solution to PROD.

    If possible, run a lot of questions while doing the character set migration oracle applications, database because it contains the application tables.

    I accept the fact that EBS database is complicated to a database independent, but still all the features and debugging tools and troubleshooting is the same, although it is autonomous or EBS database.

    We should do if we stuck to the top in with and truncate in the application according to the CSSCAN results tables,.

    little tables when we checked in Metalink he says to avoid these tables which do not affect the database or application.

    Try in a Test Server, the above link helps you on the issue. You can find answer to some tables with loss in metalink if it's a bug, just lift a SRt solve your problem.

    What we must do if we are in important application tables, export and import will help in this issue.

    No, if we have available data with loss, then we cannot use the Import/Export and we will have to use CSALTER instead.

    is this the right method or must contact oracle support for assistance on important application tables.

    YES, I personally recommend you try and paralleling have ongoing Oracle support. So that you will have a guide from A to Z, in the case you're wrong

    Hope this helps

    Best regards

  • How to get more information about the users in oracle 11g

    Hi all

    I need to know more information on users in oracle 11g.

    1. how to check when user times last connection to the database.
    2. If the user account is blocking why it is blocked? If it is locked trying Loing with wrong password how to check how many times he tried with wrong password... and other reasons also
    3 reaction strives to select user expire date is to show the value empty... we can check expire date by querys or we need to check the profile?
    4. how to check while he was reset his password, the last time.

    Please correct me if am wrong. Thank you

    Concerning

    1. how to check when user times last connection to the database.

    AUDIT

    2. If the user account is blocking why it is blocked? If it is locked trying Loing with wrong password how to check how many times he tried with wrong password... and other reasons also

    Check the profile of this user and attr.

    3 reaction strives to select user expire date is to show the value empty... we can check expire date by querys or we need to check the profile?

    SQL> select EXPIRY_DATE from dba_users ;
    
    EXPIRY_DA
    ---------
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    24-SEP-11
    23-MAY-13
    24-SEP-11
    24-SEP-11
    24-SEP-11
    

    check
    EXPIRY_DATE in dba_users is null

    4. how to check while he was reset his password, the last time.

    SELECT SYS PTIME. THE USER$;

Maybe you are looking for

  • How to change the English Vista of Polish language

    I recently bought a Toshiba laptop for a friend.Pre-installed was English Vista. They wanted to Polish.They then installed Polish Vista on top of English and now the computer just does not seem to open half of the applications that it should. Is ther

  • DEXT: How to move contacts to new groups

    I imported all my contacts into my new Motorola Cliq (MB200 in the Mexico) with Motoblur app and a CVS file and now I have created in my Motorola Cliq a new groups like family, personal,... etc, and I want to spend a few contacts of the general list

  • I need a new product key...

    Im trying to reinstall Windows xp home edition 2002 and he said that I need a product key, over the years I lost some of this information. I have no idea where he is. Help, please.

  • Why security essientials keep turn off windows Defender. ?

    Why essential security keep turn off windows Defender?

  • Limited number of app in the store

    I use a full update preloaded Windows 8 pro 64-bit on a touch of carbon lenovo x 1 with full access to all my account settings.   I get only showed a limited number of app in the store. for example, only 3 in the category economy and two in the healt