Oracle on Development Platform

I had Oracle 10g setup on the production server running 2 database. Now I want to setup another oracle 10g on the development server so every night the data of both database in the production server will be copy over to the oracle on the development server. What is the most efficient way to achieve this? 1)export/import 2)data pump 3)Clone DB 4)Backup/Restore....

user636098 wrote:
I had Oracle 10g setup on the production server running 2 database. Now I want to setup another oracle 10g on the development server so every night the data of both database in the production server will be copy over to the oracle on the development server. What is the most efficient way to achieve this? 1)export/import 2)data pump 3)Clone DB 4)Backup/Restore....I'm assuming 10gR2 - you may wish to review the R1 docs if you are still on R1. Use RMAN duplicate to CLONE and then keep refreshed a clone database would seem to match your requirements. http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmdupdb007.htm#sthref1313 is the reference you want.
Niall Litchfield
http://www.orawin.info/

Similar Messages

  • About oracle spatial development platform

    Dear sir:
    At present,I can set the spatial data with oracle spatial in Oracle dba 11g,and can view map throught IE with Javascript API.But is there any oracle spatial development platform.With it ,I can drag the visual module(as:JavascriptAPI) to finish the Web page edition.Like ArcGIS,they supply them(as:throuht visual studio,asp.net API).
    Can you show me the way to get it?
    Looking forward your reply.
    Thanks your attention.
    dongrui

    Hi,
    It sounds like you are using Oracle Maps - i.e. the javascript API of Oracle MapViewer. In that case you are better off posting on the MapViewer forum:
    MapViewer
    As for looking for a development environment, JDeveloper is likely to be your best bet for integration, but that really depends on what type of application are you developing? Is it Oracle APEX? BI? ADF? .NET? etc.
    John

  • Best development platform for enterprise applications on the Oracle DB

    We have been developing enterprise applications for many years based on Oracle technologies, right now we have reached a significant number of systems developed with Oracle Forms 6i and a few ones with Oracle Forms 10g. Although according to Oracle Statement of Direction of March 2012 Oracle remains committed to the support of Oracle Forms and Reports, there won’t be new features added to these products, and we can predict that eventually they are likely to be discontinued. Although we will continue using the Oracle Database, we have started to look for a replacement of our development platform, for the new developments and the migration of our existing Forms applications. Our Oracle database is installed on a Linux server. We are also planning to retain our existing programming staff and most of them have no experience with other tools or languages.
    This way, I would like to hear from people who has faced the same problem what development platform (development framework, IDE, programming language, application server) they chose for developing their next generation enterprise applications and what factors they considered in making that decision.
    Any suggestions, ideas, recommendations, considerations or advices you can give us would be welcome and really appreciated. Thank you very much for your time and thank you in advance for your answers.
    Edited by: lorpad on Aug 10, 2012 9:05 AM

    Your question is not an uncommon one. However, my opinion is that which product or technology you use for an application should not be solely based on what is "cool" today. Some of today's most popular product may not be able to do what you need them to do or at least may not allow you to do it easily. You need to use a product and/or technology which falls into this group:
    1. Does the product/technology offer the features our application will need?
    2. Does the product/technology scale to the level we need? Both in user base and application size?
    3. Does the product/technology offer the level of security we need?
    4. Does the product/technology fall in line with our development team's skill set?
    5. Does the product/technology fall in our budget?
    Whether you are speaking of an Oracle product or competitor's product, all have their advantages and disadvantages.
    The views expressed in this posting are my own and do not necessarily reflect the views of Oracle.
    .................................................................................................................................

  • Oracle SQL Developer 3.2, SQL*Plus COLUMN FORMAT bug

    SQL*Plus command COLUMN truncates output result in SQL Developer.
    Script in Worksheet:
    column nn format 999
    select level nn from dual connect by level<=10;The Run Script (F5) result contains only 8 lines in Script Output window:
    NN
    1
    2
    3
    4
    5
    6
    7
    8
    Changing column alias:
    select level nn2 from dual connect by level<=10NN2
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    10 rows selected
    The output can contain no data for more formatted columns.
    ===============================================================
    About
    Oracle SQL Developer 3.2.09
    Version 3.2.09
    Build MAIN-09.30
    Copyright © 2005, 2012 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product Version: 11.2.0.09.30
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.7.0_02
    Oracle IDE     3.2.09.30
    Versioning Support     3.2.09.30

    sqldeveloper64-3.2.09.30-no-jre.zip.
    My jdk now is 1.7.07 x64, Windows 7 x64.
    C:\Java\jdk17\bin>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) 64-Bit Server VM (build 23.3-b01, mixed mode)
    Gary Graham wrote:Also, I don't understand what you mean by
    The output can contain no data for more formatted columns.
    Sript:
    col owner format a10
    col table_name format a20
    col column_name format a20
    col comments format a50
    select
       row_number() over(order by column_name) r11,   
       count(*) over() c11,
       owner ow,
       table_name tn,
       column_name cn,
       comments co
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select
       row_number() over(order by column_name) r,   
       count(*) over() c,
       owner,
       table_name,
       column_name,
       comments
    from all_col_comments t
    where owner='SYS' and table_name='INDEX_STATS';
    select 1 from dual;
    prompt abcThe output truncated after headers of second queryR11 C11 OW                             TN                             CN                             CO                                                                                                                                                        
      1  25 SYS                            INDEX_STATS                    BLKS_GETS_PER_ACCESS           Expected number of consistent mode block gets per row. This assumes that a row chosen at random from the table is being searched for using the index
      2  25 SYS                            INDEX_STATS                    BLOCKS                         blocks allocated to the segment                                                                                                                    
      3  25 SYS                            INDEX_STATS                    BR_BLKS                        number of branch blocks in the b-tree                                                     
      4  25 SYS                            INDEX_STATS                    BR_BLK_LEN                     useable space in a branch block                                                           
      5  25 SYS                            INDEX_STATS                    BR_ROWS                        number of branch rows                                                                     
      6  25 SYS                            INDEX_STATS                    BR_ROWS_LEN                    sum of the lengths of all the branch blocks in the b-tree                                 
      7  25 SYS                            INDEX_STATS                    BTREE_SPACE                    total space currently allocated in the b-tree                                             
      8  25 SYS                            INDEX_STATS                    DEL_LF_ROWS                    number of deleted leaf rows in the index                                                  
      9  25 SYS                            INDEX_STATS                    DEL_LF_ROWS_LEN                total length of all deleted rows in the index                                             
    10  25 SYS                            INDEX_STATS                    DISTINCT_KEYS                  number of distinct keys in the index                                                      
    11  25 SYS                            INDEX_STATS                    HEIGHT                         height of the b-tree                                                                      
    12  25 SYS                            INDEX_STATS                    LF_BLKS                        number of leaf blocks in the b-tree                                                       
    13  25 SYS                            INDEX_STATS                    LF_BLK_LEN                     useable space in a leaf block                                                             
    14  25 SYS                            INDEX_STATS                    LF_ROWS                        number of leaf rows (values in the index)                                                 
    15  25 SYS                            INDEX_STATS                    LF_ROWS_LEN                    sum of the lengths of all the leaf rows                                                   
    16  25 SYS                            INDEX_STATS                    MOST_REPEATED_KEY              how many times the most repeated key is repeated                                          
    17  25 SYS                            INDEX_STATS                    NAME                           name of the index                                                                         
    18  25 SYS                            INDEX_STATS                    OPT_CMPR_COUNT                 optimal prefix compression count for the index                                            
    19  25 SYS                            INDEX_STATS                    OPT_CMPR_PCTSAVE               percentage storage saving expected from optimal prefix compression                        
    20  25 SYS                            INDEX_STATS                    PARTITION_NAME                 name of the index partition, if partitioned                                               
    21  25 SYS                            INDEX_STATS                    PCT_USED                       percent of space allocated in the b-tree that is being used                               
    22  25 SYS                            INDEX_STATS                    PRE_ROWS                       number of prefix rows (values in the index)                                               
    23  25 SYS                            INDEX_STATS                    PRE_ROWS_LEN                   sum of lengths of all prefix rows                                                         
    24  25 SYS                            INDEX_STATS                    ROWS_PER_KEY                   average number of rows per distinct key                                                   
    25  25 SYS                            INDEX_STATS                    USED_SPACE                     total space that is currently being used in the b-tree                                    
    25 rows selected
    R C OWNER      TABLE_NAME           COLUMN_NAME          COMMENTS                                        
    - - ---------- -------------------- -------------------- --------------------------------------------------

  • Running/Compiling *.java file in Oracle Sql Developer

    I want to compile/run java 5.0 files in Oracle sql developer1.1.2.25 on Fedora 5 platform.
    I have added javac as an enternal tool to compile java programs. Tools-->External Tools-->New
    I have also added java: /usr/java/jre1.5.0_10/bin/java as an external tool to run the complied programs
    I am able to compile the java programs, but i am not able to run them.
    I am providing ${file.name.no.ext} as an argument to java.
    Java-Log Output is:
    /usr/java/jre1.5.0_10/bin/java Writer2
    Exception in thread "main" java.lang.NoClassDefFoundError: Writer2
    However, if i run the same program in Linux terminal, i get the correct output:
    [root@localhost java]# which java
    /usr/java/jre1.5.0_10/bin/java
    [root@localhost java]# /usr/java/jre1.5.0_10/bin/java Writer2
    12
    howdy
    folks
    How can i make Oracle Sql Developer run the java program?

    I will echo the use jdev comment..
    Regardless, you may want to check the execute in directory.. or add a -cp parameter.
    Eric

  • Oracle SQL developer tool vs toad

    Hi - I am trying to do a feature comparison on these 2 tools and am not very familiar with them could someone please tell me if Oracle SQL developer tool has these features:
    Project Manager
    Result Set Compare
    Chart Designer
    Toad Report Wizard
    Pivot & Chart
    Data Compare and Synch
    Automation
    Simple Cross-Platform Queries
    Advanced Cros-Platform Queries
    Local Data Storage
    Data Transformation and Cleansing
    Data Browser
    ER Diagrammer
    Charts & Pivot Table Reports
    Automation & Scheduling Engine
    Data Compare & Sync
    Cross-connection Query

    Hi!
    I have worked with several Oracle IDE's in the past:
    * TOAD
    * PL/SQL Developer
    * Navigator
    * SQL/Developer
    Right now I tend to do most of my work with SQL-Developer and only some tasks with TOAD.
    SQL-Developer feels faster and has a cleaner interface than TOAD, while TOAD has better tools.
    Im currently publishing a series of tips for SQL-Developer in my blog:
    http://oracledeli.wordpress.com/
    Some of the posts are focussing on overcomming SQL-developers disadvantages versus TOAD:
    * SQL-Developer: Using macros http://oracledeli.wordpress.com/2011/09/28/sql-developer_using_macros/
    * Execute current worksheet file via SQL*Plus (external tools) http://oracledeli.wordpress.com/2011/09/23/sql-developer_execute_via_sqlplus/
    Best regards,
    Matt
    Best regards,
    Matt

  • Oracle SQL Developer vs Navicat Oracle vs Toad

    I've been using MySQL and planning to migrate it to Oracle, but, I'm looking for an admin tool for Oracle and heard that Navicat for MySQL is now available for Oracle. It can create, edit databases, import/ export data,etc, so many features, I tried Toad for Oracle too. It's good but very expensive.
    Navicat for Oracle and Oracle SQL Developer have a free version and I'm choosing between them. I am now in the dilemma :(

    SQLDeveloper, of course :>
    Kind of a biased answer, with this being a SQLDeveloper forum... but the cost, active forum, and cross-platform capability win the argument for me.
    I've used both the MySQL supplied tools (administrator, query browser) as well as SQLDeveloper for a while, and I'm now more at home with SQLDeveloper than the others. It feels "right" for me, so when I'm working with both databases, SQLDeveloper is the tool I use.
    Support for MySQL is limited compared to what it can do for Oracle (obviously, it's an Oracle tool), and if you want to do DDL on a MySQL database, you can't point and click (you've got to type the commands in the worksheet), but for most of my work, I can do what I need using it.
    Plus, there's always the backup of the MySQL tools for those tasks you can't do in SQLDeveloper.
    Regards,
    John

  • Oracle SQL Developer Data Modeler start up error

    Hi All,
    I just downloaded Oracle SQL Developer Data Modeler (2.0.0.57.0) [Released 1 July 2009] by selecting the option "Oracle SQL Developer Data Modeler for Windows (This zip file includes the JRE)"
    After I installed the same and tried to run it by clicking datamodeler.exe, I get the following error message
    "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll"
    On the same machine I can successfuly run the Oracle SQL Develper with no errors. My machine is having Windows XP Professional SP3.
    Any ideas? If there was a problem with Java, than the Oracle SQL Developer should also not run. But as stated it runs with out any error but the Oracle SQL Developer Data Modeler gives the above error.
    Regards,
    JAA149

    1 - The above problem has nothing to do with the memmory. I tried on a 400 MB RAM, 900 MB RAM, 1.5 MB RAM & 2 MB RAM with the same arror.
    "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll"
    http://i30.tinypic.com/9vkwf6.jpg
    2 - There are two "datamodeler.exe: files
    One is at D:\datamodeler\datamodeler.exe
    2nd is at D:\datamodeler\bin\datamodeler.exe
    The same error occurs with both the files.
    3 - The Oracle SQL Developer Data Modeler version is "Oracle SQL Developer Data Modeler (2.0.0.57.0) [Released 1 July 2009]" and the file I downloaded is "Oracle SQL Developer Data Modeler for Windows (This zip file includes the JRE) - (57M)"
    If I look in "D:\datamodeler\jdk\jre\README.txt" I find
    "Java(TM) Platform, Standard Edition Runtime Environment Version 6"
    If I run "D:\datamodeler\jdk\jre\bin\javacpl.exe" I get
    http://i30.tinypic.com/mt8ocn.jpg
    If I run "D:\datamodeler\jdk\jre\bin\jureg.exe" I get
    http://i28.tinypic.com/30boiyo.jpg
    If i check at the control panle add/remove program
    http://i30.tinypic.com/1428tba.jpg
    If I go to "http://www.java.com/en/download/manual.jsp" and download "jre-6u16-windows-i586-s.exe" and run it.
    If I go to "C:\Program Files\Java\jre6" I find the same files as in "D:\datamodeler\jdk\jre"
    I am able to run Oracle SQL Developer with out any kind of error let alone the above one. But with Oracle SQL Developer Data Modeler I get the above mentioned error no matter what I try.
    As the error states "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll". The file "jvm.dll" is located at two places. One at "D:\datamodeler\jdk\jre\bin\client\jvm.dll" and the second at "D:\datamodeler\jdk\jre\bin\server\jvm.dll"
    A similiar problem occurs with JDeveloper with the fllowing solution
    http://forums.oracle.com/forums/thread.jspa?threadID=506339&start=0&tstart=0
    Which states the following
    "hello!
    in the problem with JDeveloper i have a solution. The jdk have a file jvm.dll in the path: jdk/jre/bin/client/jvm.dll this is the problem ... now in the path:jdk/jre/bin/client/ojvm has a file with the same name if you copy and paste this file to the another path, now its works fine your Jdeveloper.
    Jdeveloper use two files to jvm.dll to work one in the folder /client and other in /server copy the same file to the two locations for precaution
    for me work fine thanks..."
    I tried to do the same (Copy from client folder to server folder)
    D:\datamodeler\jdk\jre\bin\client\jvm.dll
    COPIED THIS FILE TO
    D:\datamodeler\jdk\jre\bin\server\jvm.dll
    Nada. So I reversed it (copied from server folder to client folder)
    D:\datamodeler\jdk\jre\bin\server\jvm.dll
    COPIED THIS FILE TO
    D:\datamodeler\jdk\jre\bin\client\jvm.dll
    Does not work. So I tried another solution stated at the same forum entry
    "Well,
    i solved the problem by this way :
    <SQLDEVELOPER>/jdev/bin/ide.conf
    In this file, change this line :
    AddVMOption -Xmx512M
    by
    AddVMOption -Xmx256M
    Now, the executable is lauching correctly. No more errors with Java Virtual Machine.
    But is it a good thing to solve it like that ?"
    But the ide.conf file is only at "D:\sqldeveloper\ide\bin\ide.conf" which is for the SQL Developer and not the SQl Developer Data Modeler
    Correct me if I am wrong but
    JRE = Java Run Time Envoirment
    JDK = Java Development Kit
    And Oracle SQL Developer Data Modeler needs JRE and not JDK. In any case I download JDK
    jdk-6u14-javafx-1_2-windows-i586.exe (121,306 KB) and installed it but no succcess.
    I tried every thing except completely re-install my whole PC.
    Any help will be much appreciated.
    Cordially,
    Jawad

  • Oracle SQL Developer Installation Help (Basics?)

    Hello
    So im taking a class (student here, totally new to this) in Oracle SQL right now and trying to download the Oracle SQL Developer tool onto my desktop (v 2.1.1).
    Im just starting up Oracle SQL Developer and its asking, or I am looking to create a connection.
    I was wondering if anyone had a tutorial for how to make a connection?
    I only have Oracle SQL developer installed on my machine right now, nothing else. I dont have a server or anything, and just wanted to run this on my desktop local machine to practice running some SQL.
    Is there anything else i need to install?
    Is there some basic username and password that would allow me to connect to my local machine?
    What values do i need for the hostname, port and SID etc?
    Any help for a new student to Oracle would be greatly appreciated.

    You'd need a database to connect the SQL Developer client to.
    The easiest / quickest if you're a student would be the Express Edition.
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    Pick your platform and away you go.
    Your hostname will then be 127.0.0.1, SID will be XE .... username and password will depend on what you choose when you're installing (you should get prompted for SYS/SYSTEM passwords).

  • Problems using SQL*Loader with Oracle SQL Developer

    I have been using TOAD and able to import large (milllions of rows of data) in various file formats into a table in an Oracle database. My company recently decided not to renew any more TOAD licenses and go with Oracle SQL Developer. The Oracle database is on a corporate server and I access the database via Oracle client locally on my machine. Oracle SQL Developer and TOAD are local on my desktop and connected through TNSnames using the Windows XP platform. I have no issues with using SQL*Loader via the import wizard in TOAD to import the data in these large files into an Oracle table and producing a log file. Loading the same files via SQL*Loader in SQL Developer, freezes up my machine and I cannot get it to produce a log file. Please help!

    I am using SQL Developer version 3.0.04. Yes, I have tried it with a smaller file with no success. What is odd is that the log file is not even created. What is created is a .bat file a control file and a .sh file but no log file. The steps that I take:
    1.Right click on the table I want to import to or go to actions
    2. Import Data
    3. Find file to import
    4. Data Preview - All fields entered according to file
    5. Import Method - SQL Loader utility
    6. Column Definitions - Mapped
    7. Options - Directory of files set
    8. Finish
    With the above steps I was not able to import 255 rows of data. No log file was produced so I don't know why it is failing.
    thanks.
    Edited by: user3261987 on Apr 16, 2012 1:23 PM

  • Oracle Forms Developer 11g - OAF - ADF ????

    Hi
    i am a newbie  in these terms and hence don't know much of the difference ....
    I completed OCA developer and now i don't know what to choose next ???
    what i have seen online about next certification path is
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=5001&get_params=p_exam_id:1Z0-151&p_org_id=&lang=
    that is Oracle Fusion Middleware 11g: Build Applications with Oracle Forms
    also i saw some hype about ADF and OAF well being newbie i dont know what is the difference or either i can't find each of these in the Certification lists.
    what i assumed is OAF is the same as Oracle Fusion Middleware 11g: Build Applications with Oracle Forms
    but where is the certification of ADF ??? any link 
    also what to choose regardless of what i have in mind.
    Thanks
    Regards
    Hassan Siddique

    Hassan,
    OAF is not forms and it's not ADF either. These are different products targeting different markets.
    OAF (Oracle Application Framework - Wikipedia, the free encyclopedia)
    Oracle Application Framework (OA Framework or OAF) is a proprietary framework developed by Oracle Corporation for application development within the Oracle E-Business Suite (EBS)
    ADF (Oracle Application Development Framework - Wikipedia, the free encyclopedia)
    In computing, Oracle Application Development Framework, usually called Oracle ADF, provides a commercial Java framework for building enterprise applications. It provides visual and declarative approaches to Java EE development. It supports rapid application development based on ready-to-use design patterns, metadata-driven and visual tools.
    Forms (Oracle Forms - Wikipedia, the free encyclopedia)
    Oracle Forms is a software product for creating screens that interact with an Oracle database. It has an IDE including an object navigator, property sheet and code editor that uses PL/SQL. It was originally developed to run server-side in character mode terminal sessions. It was ported to other platforms, including Windows, to function in a client–server environment. Later versions were ported to Java where it runs in a Java EE container and can integrate with Java andweb services.
    The primary focus of Forms is to create data entry systems that access an Oracle database.
    For more information you can use google and search for "oracle oaf" or "oracle adf" or "oracle forms"
    Timo

  • Unable to run oracle 10g developer suite

    Hi,
    I have installed both on oracle 10g express and oracle 10g developer suite on my laptop running XP home edition. The database is running , but I can not get form developer to run. The error message as "ORA-12154-TNS:could not resolve service name"
    My questions are: 1) does 10g developer suite have to run as client-server platform? Can it be stand-alone? 2) or, it is because XP Home edition? 3) Can 10g developer run on Express edition?
    Thanks.

    but I can
    not get form developer to run. The error message as
    "ORA-12154-TNS:could not resolve service name"Is the form builder software opening (appearing).
    Are you able to connect through XE's SQL Command?
    The error you are getting is because forms cannot connect to the database, and not because it is not running.
    You need to configure the tnsnames.ora file found unde
    %ORACLE_HOME%/NETWORK/ADMIN/tnsnames.ora.
    you can either configure it manually or by using the Net Configuration Assistant found under Start -> My programs ->%oracle_home% -> Oracle configuration and migration Assist.
    Manual:<Service_name> =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = <hostname> or localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = <sid_name>)
      )If You have XE installed your connection identifier would probably must look like something like this. you can just copy paste it.
    XE =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = XE)
      )The port number 1521 is the default, if you changed it during installation then use the port number you have specified during installation.
    1) Orcale Developer suite 9i and above are for web deployment and not client server.
    2) what you mean by standalone? do the configuratin above and it should work.
    3) Oracle products are not certified for windows home edition (but I have seen them working) but keep in minde that you will face many problems since the OS is not supported one.
    Regards,
    Tony Garabedian

  • To Learn Oracle Forms Development

    Dear all Oracle Developer.
    I am a .Net Developer. Basically working asp.net, c#, Sql Server for 2 years.
    From Begening, i had interest on Oracle and Java . But Now working at .Net Platform.
    So, Now i want to learn Oracle Forms in home.. although, i learned 10 g database with Oracle University tutorial.. But how i
    Complete Oracle Forms Developing in home
    any one provide me suggession to learn oracle in Sort time. so i can to work Project..
    Thanks To All
    Maksud

    The power of Forums is the ability to search for answers! This is a very common question. A simple search would have given you numerous tutorials, book references, etc.
    Craig...

  • How to print a something in oracle sql developer

    Hello all
    Do you know How to print a something in oracle sql developer? i mean for example in the query we write something, (offcourse i dont mean comments)
    thank u in advance.
    best

    1003209 wrote:
    Hello all
    Do you know How to print a something in oracle sql developer? i mean for example in the query we write something, (offcourse i dont mean comments)
    thank u in advance.
    bestDBMS_OUTPUT()

  • Oracle SQL Developer 1.0 is easy to install and use, and is portable

    I have tried the latest version of Oracle SQL Developer 1.0 and would like to share my experience of using it.
    Installation of Oracle SQL Developer 1.0
    Download from
    http://www.oracle.com/technology/software/products/sql/index.html?_template
    Unzip the Oracle SQL Developer for Windows (55.8 MB) to C:\sqldeveloper (103MB)
    Advantages: The unzip folder can be your removable disk and you can access Oracle
    anywhere provided that there is an Internet connection to Oracle Server.
    Unzip sqldeveloper-1557.zip to C:\ with folder name;
    double-click on sqldeveloper.exe in c:\sqldeveloper
    Click on [No]
    Tick all check boxes
    Click on [OK]
    Right-click on Connections, New
    Database Connection…
    Enter User name: SCOTT
    Password: TIGER
    Hostname: 127.0.0.1 (or IP of your Oracle Server on the Internet)
    SID: orcl
    If you want to connect to local Oracle user SYS,
    Enter User name: sys
    Password: ora10g_manager_password
    Hostname: 127.0.0.1
    SID: orcl
    Select Role: SYSDBA
    Click on [Connect]
    Right-click on Tables, Create Table
    Click on [Add Column]
    Select Type: NUMBER for COLUMN2
    Click on [OK]
    Table1 is created
    Click on TABLE1, click on “Data” tab
    Click on the “Green Plus” icon to insert record
    Click on “Commit Changes” icon
    Click on “DBConnection1” tab
    Enter: select * from table1;
    Click on “Execute Statement (F9)” icon
    To exit: Click on File, Exit

    Have you noticed that there's a forum dedicated to SQL Developer?
    C.

Maybe you are looking for

  • E530C 33661G0 Status of Ubuntu compatibility

    Hi, I'm interested in purchasing a Lenovo E530C 33661G0 as available here http://www.flipkart.com/lenovo-thinkpad-e530-33661g0-laptop-3rd-gen-ci3-2gb-500gb-dos/p/itmdnyhdpwnd... Now, I would like to install Ubuntu on this laptop. In the following two

  • Blank document when converting PDF problem

    when converting a pdf to word doc it is blank, what can i do to see it?

  • Restore addressbook and calendar

    I stupidly tried to import my old system's addressbook and calendar to my G5 running 10.5.7 and lost all the data and the apps don't work anymore! Do I have to do clean reload of Leopard to restore the addressbook and calendar, or is there a way to j

  • Verizon Services in Anchorage Alaska area

    I am considering buying a pet tracker that relies upon Verizon cell network coverage to operate.  I am aware that Verizon service is coming to Alaska, but will this device operate now.  http://www.pettracker.com/     Tagg pet tracker

  • User quotas - work with time machine?

    I've got our 10.6 xserve setup hosting home directories for people, as well as a share for network time machine backups. I'm wondering if I set a quota for the user if it will apply for both space their home folder uses, and their time machine backup