Sql Developer. How to

Нужна помощь.Как стрелочки(связи )которые устанавливаются между сущьностями, подписать можно ? Как им дать название?
Как создается и где удаленный ключ, и для чего он нужен.
И как ссылки создаются на объекты или между ними?
За ранее огромное спасибо.
The help is necessary. How strelochka (communication) which are established between sushchnost, it is possible to sign? How to give them the name?
As it is created and where a remote key and for what it is necessary.
And how references are created on objects or between them?
For earlier many thanks.
Edited by: 1006845 on 20.05.2013 2:33

1006845 wrote:
The help is necessary. How strelochka (communication) which are established between sushchnost, it is possible to sign? How to give them the name?Welcome to OTN!
SQL*Developer communications are established by creating connections to the desired database.
Start SQL*Developer. right click on the connecitons icon, and choose Create Connection. Fill in the information to the database server including username and password and test the connection.
As it is created and where a remote key and for what it is necessary.After you can connect to the database you can use the object browser to find the objects available to the schema you logged in as. You can create database objects if the schema has those priveleges.
And how references are created on objects or between them?What do you mean by "references"?

Similar Messages

  • Using SQL developer, how to show more then 1 table at at time ?

    Hi, everybody
    I am able to open more then 1 procedures/functions for editing.
    However i am not able to open more then 1 table for seeing the data and columns.
    1) how do i open more then 1 table tab in sql developer or i am not allow to do so ?
    2) is it possible to see what column is the foreign key of a table in sql developer ?
    thanks once again :)

    use freeze view button
    and drop table below from tabs
    http://www.oracle.com/technology/products/database/sql_developer/files/viewlets.html
    watch this viewlet
    Useful Features of SQL Developer (July '07)
    it can show u how u can see more than one table at a time

  • In the SQL Developer how to set Indentation in preferences?

    I am using SQL developer version 1.5.1 BuildMain 5440. In the Tools --> Preferences--> Database --> SQL Formatter --> Alignment and Indentations, I see Indentation on the right panel which shows drop down and spaces, and there is a check box option "Use tabulator". It is disabled for me. How do I make that enable? I want to use this in my formatting.

    You need to disable the first option "Right-Align Master Keywords"..

  • Newbie to sql developer, how to stop a query

    Hi All,
    A very basic question and I've searched through this forum and Tom's site, i think i read it somewhere but i forgot where and what it was.
    How can I stop a query running in Sql Developer with what key combination?
    Ctrl-C D E Q .........., help!
    When I 'leave' for another application there a nice grey screen appearing so i can't use the buttons.
    Thanks in advance and my appologies if there is an answer already and I didn't find it.

    A query in the worksheet can be stopped using the Cancel button in the worksheet's toolbar (the 5th button). Hovering over it, you see the default hotkey assigned is "Ctrl-Q".
    If you get a gray screen means your SQL Developer locked up. There's currently no way of canceling what is locking him up. You could kill its session, but that's pretty radical and takes its share of time fining out what to kill and how.
    What another user on this forum (EricH) suggested, is running 2 SQL Developers side by side. When 1 locks up, he uses the other one. Although I'd like SQL Developer in the future to run it's queries in separate sessions by itself, thus preventing the whole program to lock up.
    K.

  • SQL Developer - how to limit rows in output

    I want to look at a record (Select * ), but only want to view the first 10 rows, for field info. How do I limit the row output to 10 rows?

    Welcome to the forum!
    >
    I want to look at a record (Select * ), but only want to view the first 10 rows, for field info. How do I limit the row output to 10 rows?
    >
    What does that have to do with SQL Developer?
    You can limit the rows a query returns by using ROWNUM
    SELECT * FROM myTable where rownum < 11If you just need column info you can describe the table
    SQL> set serveroutput on
    SQL> desc dept
    Name                                      Null?    Type
    DEPTNO                                    NOT NULL NUMBER(2)
    DNAME                                              VARCHAR2(14)
    LOC                                                VARCHAR2(13)
    SQL>If you have SQL questions you need to post them in the SQL and PL/SQL forum
    PL/SQL

  • SQL Developer, how to save connections in a Citrix envrionment

    We have SQL Developer deployed in Citrix. The user creates new connections and saves them and exits the applicaiton. When they return to the applicaiton the connections are gone. How can I make these persistent? Where are these connections stored, in a file somewhere?
    Thanks for your patience and support

    Not exactly but very close. You pointed me in the right direction, thank you for your assistance
    I found the file at Application Data\SQL Developer\system2.1.1.64.45\o.jdeveloper.db.connection.11.1.1.2.36.55.30\connections.xml
    I guess this might be version specific, we are running, Oracle SQL Developer (2.1.1.64)
    JLH

  • I am not able to connect to database in sql developer.how to do?

    I downloaded sqldeveloper 1.5.4.59.40. iam not able to establish connection to database. Can anyone tell me ?

    Have you created a database (or have one you connect to)?
    Have you created the Net Service connections for SQL Developer to use?
    Does SQL Developer have access to this Net Serviice name?
    Have you created the connections from SQL Developer?
    Can you post an error message?
    See
    <br>
    Oracle Database FAQs
    </br>

  • SubVersion in SQL Developer - how to link to packages and procedures

    My question is this - I am starting out using SubVersion in Oracle and it seems pretty straightforward to use as a source control for files that are stored in a Windows directory, that is the only way I have used it so far.
    Am I able to use it to control packages and procedures that I have saved as part of my database, ie the procedures are part of a package and the package appears within the Packages section of the appropriate connection in SQL Developer.
    I hope this makes sense.
    Cheers,
    JabJam

    Hi JabJam,
    So far, everyone is correct. SQL Developer just uses a file-based source control system (e.g., SVN), which means updating database object definitions via scripts under version control, or somehow exporting the new definition to a script so it can be version controlled after the fact. And wouldn't it be nice if the database objects could be version controlled directly. With the database developer having control over when any changes are committed for shared use in the database. Similar to using the SVN plug-in for an IDE like Eclipse for a given programming language in a shared development environment.
    But what would your DBA have to say about that? Don't most DBAs require scripts for deploying code or structural changes?
    In Oracle, definitions (DDL) are committed automatically. Anyone granted access sees them. Since you probably don't do development directly against a production database, eventually scripts (either manual or generated) will be needed for deployment to QA or production. Few mechanisms currently exist to work against an active database without other authorized users also seeing these changes.
    For DDL, the closest thing would be the fairly recent edition-based redefinition feature in 11g (R2, I think). For DML, the OWM (Oracle Workspace Management) feature would be loosely analogous.
    This is not a simple issue. Version control via an extension for Subversion provides essential basic support. Going beyond that might mean watching the evolution of edition-based redefinition, but DBAs would probably require scripts for that too.
    Regards,
    Gary
    SQL Developer Team

  • SQL Developer: How do I copy data with Column Headers from the output grid?

    Hello,
    I am using Version 2.1.1.64.
    I run a SQL query, I get the results grid in the "Query Result" window down below. Say I get 10 rows returned, with 5 columns.
    I want to Copy this entire grid, plus the column headers/names, to the clipboard. So I can paste it under the original query to document the results of that query.
    I can't find any way to do this. I can copy/paste the results grid, but it doesn't copy the headers.
    The only way I see to do it is to go through numerous steps to Export to a TXT file, then paste that. Unfortunately, that is a lot of wasted steps if I need to do this over and over, plus, the output gets pasted in an ugly format with double quotes, etc.
    It seems like the simplest functionality is to copy/paste the entire results grid, and of course you might the headers. Why is this so complicated/impossible to do?
    (I believe Toad has the same problem. DBArtisan allows you to copy/paste the entire results, plus headers, though.)
    Any assistance would be appreciated!
    Thanks,
    John

    Ah, ok...
    I had tried that before, and it didn't work, it seemed to copy the path of filename I was using. But I think that was because I had clicked on a Column Header first, and it had asked me if I wanted to filter. I think then it lost track that it was in the grid. It's a little flukey.
    What I did now was to click on an individual cell in the output, then hit CTRL-A to select all, then hit SHIFT-CTRL-C. That gives me exactly what I want.
    Thanks very much for your quick solution, I appreciate it!
    John

  • How to change the password of a schema using Oracle SQL Developer

    Hi need to change the password of a schema using Oracle SQL Developer how do i do it?

    Hi
    alter user username identified by password

  • Connecting to Oracle DB on Ubuntu 8.04 using SQL Developer

    Hi,
    I managed to install Oracle 11g on Ubuntu 8.04 using this guide:
    http://www.pythian.com/blogs/968/installing-oracle-11g-on-ubuntu-804-lts-hardy-heron
    But I don't remember the Username or SID, that's why I keep on getting ORA-12505 from SQL DEVELOPER
    How can I get those missing informations?

    But I don't remember the Username or SIDAssuming your DB is up and running, you can find out the SID by :
    $ ps -ef | grep smon | grep -v grep
    oracle   15298     1  1 10:59 ?        00:00:00 ora_smon_db11
    $ here db11 is the SID.
    About username, you can create one. Use Sql*Plus and OS authentication :
    $ export ORACLE_SID=<your SID>
    $ sqlplus / as sysdba
    SQL> CREATE USER

  • Set  mo_global.set_policy_context in sql developer,But no datas to view

    Hi All
    I have query some tables in sql developer.but no datas retrivee
    So i have try to set the MO_global based on org_id
    BEgin
    Apps.Mo_Global.Set_Policy_Context('S',81);
    End;
    Begin
    Dbms_Application_Info.Set_Client_Info(81);
    End;
    " select * from Mfg_lookups; " - no data showing in sql developer
    How can i fix the issue in sql developer
    Thanks

    Hello,
    Please check if Note 415860.1 : "How to view org-specific data in a MOAC environment" can help.
    Regards, Carlo.

  • SQL developer to debug a cursor data ?

    In the SQL Developer, how to debug a cursor ? In the debug mode, can I see its data what the cursor points to ?
    Thanks
    CURSOR C_EMP (DEPT_NUM_1  NUMBER)
        IS
        SELECT E.EMPLOYEE_ID, E.LAST_NAME, D.DEPARTMENT_NAME
        FROM EMPLOYEES E JOIN DEPARTMENTS D on(D.DEPARTMENT_ID = E.DEPARTMENT_ID)
        WHERE 
        D.DEPARTMENT_ID = DEPT_NUM_1;

    >
    In the SQL Developer, how to debug a cursor ? In the debug mode, can I see its data what the cursor points to ?
    CURSOR C_EMP (DEPT_NUM_1 NUMBER)
    IS
    SELECT E.EMPLOYEE_ID, E.LAST_NAME, D.DEPARTMENT_NAME
    FROM EMPLOYEES E JOIN DEPARTMENTS D on(D.DEPARTMENT_ID = E.DEPARTMENT_ID)
    WHERE
    D.DEPARTMENT_ID = DEPT_NUM_1;
    >
    A cursor is a definition and not executable code so there is nothing to 'debug'. That would be analogous to saying you want to 'debug' a query. What does that even mean?
    What do you mean by 'see its data what the cursor points to'?
    Do you mean see the query underlying the cursor? Then no - you cannot do that.
    You can fetch the data or, using dynamic sql you could describe the result set to see what column names and datatypes will be returned but there would be no information about where that data actually came from.
    This question isn't really a sql developer question but when you have one of those you should post in the sql developer forum at
    SQL Developer

  • Extract Siebel Tools sse_data.dbf file into Oracle Sql Developer.

    Hi All,
    I have Siebel tools installed on my machine and I need to export the sse_data.dbf file from tools to Oracle Sql Developer, how do I do that? Any help would be much appreciated. Thanks
    Edited by: user11919275 on May 17, 2010 4:20 AM

    Hi,
    There's a tool named dbisqlc.exe which comes with default Siebel Tools installation. You can execute DML statements by using this tools. Actually dbisqlc.exe and sqldeveloper are both client tools for executing SQL statements.
    What do you want to do by exporting the local dbf? Can you please explain your requirement?
    Regards
    Cuneyt

  • Garbage collection SQL Developer

    When data grids are closed in SQL Developer, how long until the garbage collector frees that associated memory and releases it back into the pool? Are there preference(s) or configuration setting(s) that we can change to reduce the time from closing a data grid until that associated memory is released?
    What I am trying to accomplish is staying within the memory constraints as dictated by the real memory constraints of the machine without having to quit and then restart SQL Developer.
    Thanks in advance,
    ScottK

    Hi Scott,
    You might want to review some of the information here:
    Reduce SQLDeveloper memory footprint with JDK 1.7
    In summary, the improved garbage collection algorithm can be enabled in the later jdk1.6.0 updates. I believe G1GC first becomes the default algorithm in jdk1.7.0_04, along with other JVM optimizations merged in from JRockit. Just note that Java 7 is not certified with SQL Developer at this time (search the forum for details), but it does seem to reduce memory consumption and offer smoother performance.
    Regards,
    Gary
    SQL Developer Team

  • 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()

Maybe you are looking for

  • Why can't I sync my ipod after update

    After doing the latest update, my ipod, iPad and iPhone is no longer recognised in iTunes. None of the devices I have are connecting or showing in connected devices box, it is all greyed out. I have run the device test on iTunes but it says there is

  • PC suite: install/backup to drive other than C

    Hello, PC Suite 6.85 Windows XP SP 2 USB Cable My question(s): - Is it possible to install the Pc Suite softwares to a drive different from my C:\ drive? I have hardly any space left on C:\, but gigs and gigs free on D:\. - Assuming the answer to the

  • QuickTime VR Panorama doesn't play correctly from a webpage

    http://www.nps.gov/features/glac/gallery/082105b.htm is supposed to play a QuickTime VR Panorama (082105suelake.mov).  It contains the following <embed> tags: <embed src="../video/panoramas/082105suelake.mov" width="600" height="465" autoplay="true"

  • Infinite loop in PR workflow even if the document is now APPROVED

    Hi everyone, Our PR workflow experiences a confusion in the document's status. A loop is being executed even if the PR document is now being APPROVED. The template, maybe, doesn't correctly read the status of the PR. Since the loop still runs, the ap

  • TP 2 generates unknown ADF Faces RC component

    JHeadstart 11g TP 2 generates an unknown ADF Faces RC component af:inputHidden when the Display Type of an item is set to Hidden in de JHS application definition. fragment from generated jsff: <af:inputHidden id="UserPreferencesuprfDummy" value="uprf