limitation in the use of sql * more like a database for applications

Dear expert;

I would like to know everything, what are some of the main limitations using sql * more as your database in the application in addition to designing the user interface is pretty nice... and google does not produce answers to my questions also unfortunately

user13328581 wrote:
I don't know about the drivers, I just need an IDE that is very similar to the PL/SQL Developer who will give me the opportunity to create the tables and their relationships and other tasks DDL that is why, at the beginning I was just wondering if it is OK to use sql * more for everything that...

Yes, sqlplus allows you to do what you want

Tags: Database

Similar Questions

  • Limitations on the use of SQL/PLSQL functions in reports 6i / 10g

    Hi gurus...

    We have a limitation on the use of TRIM, Regular Expressions, CASE operator subquery in cursor in reports 6i/10 g...
    Could you please let us know all these limitations for reports 6i / 10g. Any reference document will be much more useful...

    Any help will be greatly appreciated...
    Thank you in advance...

    gt1982

    There is no documentation. For example, documentation reports 6i can't say you cannot use regular expressions, simply because it is right, it did not exist at the time.
    The pl/sql in the forms and reports engine is always behind, on the database. You should put as much code as possible in the procedures of database and the views if you want to use again (pl /) sql features.

  • can't use the iphone 6 s more like ipod touch for calls/texts?

    OK, it's probably a unique situation. I have two iPhones to verizon. One is a 6 sec more not active, the other is a 5s which is activated. Basically, I use 5S for when I go out (where I prefer to use a hand on a bigger screen), and I want to use the 6s more as a second phone (via continuity) exclusively at home (where I prefer a bigger screen on one-handed use), but I am running into problems.

    First of all, let me say that I tried a mini ipad for a few weeks... twice... and every time I found it is too big for what I wanted. I wanted a screen larger than my 5s at home, but I wanted to still be able to easily grab a single hand and use my thumb to scroll. And I wanted to put always in my pocket when I was moving from room to room of my house. The mini was simply too great for that. The 5.5 "more does the job much better. But then again, I prefer the small size of 5 when I when I go out, especially since I don't spend much time on my phone outside the House, so I couldn't use more to replace my main phone.

    I would like therefore to anchor my 5s when I go home and just use my more like my phone then at home. The problem is trying to get calls and texts of the function on the most through continuity. Both devices are signed in my Apple ID and are the same wifi network. But on my more...

    In message settings, under "imessage" he says only: "awaiting activation...". »

    In Facetime settings, under 'facetime' he also says 'awaiting activation... ". »

    The messages app shows no history of conversation.

    The facetime app, shows, however, that ONE of my previous facetime calls in history. The strange thing is that this call is not listed in my 5s facetime app even though it shows the call history, before and after this date.

    I tried to send/receive texts on my 5 since setting up the most and none appear on my. I tried to make a call, but there was some message automatic verizon to pay money to make the call. Tried not to receive phone calls still well.

    As I understand it, iphones that are not activated are simply ipod touch, but for some reason, this does not seem to be true, since on ipod touch, facetime and messages can connect to one identifier Apple and manage the calls and texts with full transparency.

    Any ideas? Much appreciated!

    Sorry... I'm a bit confused. Which phone has the SIM inside? You will use the 6 s + as an iPod Touch, but your post seems to say that you will use it as a phone your title says.

    Regardless, I think that you need to activate the "iPod Touch", using a SIM card, and then you could remove it. You would lose any function that relies on the SIM door of course.

    Activation of a phone is a thing of the part 2. One for the carrier, one for Apple. A real iPod Touch activation would be fair for Apple.

    I don't think or other device would do anything if not enabled. Internally, your two devices are phones and probably must be activated in this way. Out the SIM card after activation would be where your phone becomes an iPod Touch.

  • trying to get used to sql * more running and creating a simple procedure

    Hello all;

    I'm getting used to sql * more after using for a while using pl/sql developer.

    I am trying to create a simple procedure and run it. See my procedure below
    create or replace procedure test(t in varchar2(200), limit in number(30))
    begin
    select tbl_report.id from tbl_report where tbl_report.id like '|| t ||%' and rownum <= limit;
    end test;
    and then I type in run hr.test ("J", 10); to run this and then press ENTER, and it does nothing. How can I run and create a simple procedure in sql * more

    Hello

    In addition to all the good points, others have done:

    When you issue a SELECT statement in SQL * Plus (or any other front end) two things happen:
    (1) a result set, containing the results of your query, is produced, and
    (2) this result set is displayed.
    Given that these two things are always done together, it is easy to forget that they are two different things.
    In PL/SQL, you must explicitly do something to catch the result set, and you must explicitly do something else to view it (if you want to display it).

    A simple way to get the result set is to use a cursor FOR loop, to extract a line at a time and run code with this line in a record variable (called the country in the example below).
    View the results is to call dbms_output.put_line.

    Here is an example:

    CREATE OR REPLACE PROCEDURE     test
    (       t       IN      VARCHAR2
    ,     lmt      IN     NUMBER          -- LIMIT is an Oracle keyword; best not to use it as a variable name
    )
    IS
    BEGIN
        FOR  country  IN ( SELECT  country_name
                          FROM    hr.countries
                     WHERE   country_name     LIKE t || '%'
                     AND     ROWNUM          <= lmt
                   )
        LOOP
            dbms_output.put_line (  country.country_name
                        || ' = country_name'
                        );
        END LOOP;
    END test;
    /
    SHOW ERRORS
    

    You can use variables, such as t and lmt, in the query without using dynamic SQL, as long as the variables do not have the same names as the columns in the table. In this case, t and lmt are good names; country_name or region_id wouldn't. (In fact, t is a reputable insofar as it cannot be confused with a column in the table of the country. T is not a good reputation in the sense that it does not give much information about what contains the variable, or how it is used. Why not call the variable target_name or name_a_trouver?

    You can run the SQL procedure * more like this:

    SET     SERVEROUTPUT     ON
    
    EXEC  test ('I', 2);
    

    If you issue the SET SERVEROUTPUT ON command, then you will not see the output of dbms_output. You must only issue the command SET SERVEROUTPUT ON once per session, but nothing bad happens if you do it more than once.

    When I ran the procedure as stated above, I got this output:

    Israel = country_name
    India = country_name
    

    Notice that "The Italy" does not appear, because lmt has 2.

    Do not create your own procedures, tables or other objects in the HR schema, or among all the other patterns created by Oracle. Create your own schema and create procedures and other objects in it.

  • How to specify the instance in SQL * more command line?

    Hello

    I'm learning to Oracle. I currently have 2 instances of database running. I wanted to connect to one of the bodies and used the following command from the command line:
    sqlplus system as sysdba/abc123@ocp11gsid
    
    where 1234 is the password for the system user in the ocp11gsys instance.
    When I run the command above, SQL * more ask me the password. I do not understand why he asks me the password because I provided on the command line.

    What is the correct command line, so he asks me the password? (without defining the variable ORACLE_SID of environment - basically, I want to know how to specify the user, his password and sid, all in the sqlplus command line, without being prompted to enter the password that I mentioned.)

    Thank you for your help,

    John.

    John,

    This is how it works.

    E:\Documents and Settings\aristadba>sqlplus system/oracle as sysdba
    
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 2 22:49:25 2010
    
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL>
    

    And now it ask the password,

    E:\Documents and Settings\aristadba>sqlplus system as sysdba/oracle
    
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 2 22:50:42 2010
    
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    
    Enter password:
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL>
    

    Spot the difference?

    The user name and password must unite. What you are to provide the password with the role where it will not be considered.

    Update
    I missed that part,

    What is the correct command line, so he asks me the password? (without defining the variable ORACLE_SID of environment - basically, I want to know how to specify the user, his password and sid, all in the sqlplus command line, without being prompted to enter the password that I mentioned.)

    The only thing that you can specify is the user name and password. The SID must be defined by you, either explicitly using the export or oraenv command if you are on the local system and do not use the TNS to connect to the instance. If you use the TNS, then an appropriate entry should be there which would connect to the required database.

    HTH
    Aman...

    Published by: Aman... on August 2, 2010 22:54

  • Hello, im a student in England, student of architecture. I have the pack student for 12 months and I really need to know my limits with the use, (copyright licensing). I am allowed, except by using my home application to show works that i already have)

    Hello, im a student in England, student of architecture. I have the pack student for 12 months and I really need to know my limits with the use, (copyright licensing). I am allowed, except by using my home application to show works which I have already done (as portfolios) to architectural firms, I intend to request a placement to? also can I post my stuff (already did the work) on my blog or tumblr? I intend not to use for profit/money at all well (if I was I wouldn't ask you this lol). Thank you.

    Hi,

    Please see Licensing FAQ: where can I find the terms of membership and the terms of use?

    Hope that helps!

    Kind regards

    Sheena

  • Is the function of automatic update of Windows found in the use of control panel of your compensation for the use of the Internet from my ISP?

    Original title: Windows updates

    Is the function of automatic update of Windows found in the use of control panel of your compensation for the use of the Internet from my ISP? If so, how? In addition, how to hide an update, I don't want to? For example, I use (and I'm happy with) Windows Internet Explorer (v7), but receive reminders to update update to Internet Explorer v9, which I don't want.

    Is there a way to prevent Windows Update for sending this reminder in the future?

    Geoff

    Hide and Yes will use you PSI data usage. It depends on how much the updates install you, on the amount of data it uses

  • What are the requirements for the use of Sql Developer with MS SQL Server via the JDBC MS driver?

    I tried to add

    sqljdbc_4.0\enu\sqljdbc4.jar

    or

    sqljdbc_4.0\enu\sqljdbc.jar

    or both

    in part 3d driver JDBC list in properties, but there is no tab in the connection dialog box create.

    Just for a test, I added IBM's JTOpen driver and a new tab of the DB2 appeared immediately.

    What should I do to be able to create connections to MS SQL?

    Use the correct driver, jTDS 1.3

    http://www.Oracle.com/technetwork/database/migration/JDBC-migration-1923524.html

  • How to see the result in sql * more

    Hello
    IAM running a procedure to sql * more...
    I put quite a few DBMS .put line-out inside the proc for purporse debugging
    before running, I said set serveroutput on;
    the procedure is done correctly, but I don't see any output

    It just displays the procedure completed successfully

    How can I see the output

    concerning
    REDA

    Hello reda,.

    You are absolutely sure that the procedure actually runs one of these DBMS_OUTPUTs, that is, you are sure that alternate paths through your procedure are not taken?

    To confirm, put a DBMS_OUTPUT at the very beginning of your procedure, to see if that print, which should be if you set serveroutput on it.

  • Failover of the database for applications using JDBC connections

    Hello

    We have DataGuard instances for our Production databases and are configuring failover falls down the primary databases. We are able to set up TNS/LDAP for applications that use this method of connection, however we have a number of applications third-party who connect using JDBC and are not configurable in any other method. Is there something we can do about it or we manually configure these applications if a failover is required?

    Thank you

    Adam

    AdamJ.Sawyer wrote:

    Hello

    We have DataGuard instances for our Production databases and are configuring failover falls down the primary databases. We are able to set up TNS/LDAP for applications that use this method of connection, however we have a number of applications third-party who connect using JDBC and are not configurable in any other method. Is there something we can do about it or we manually configure these applications if a failover is required?

    Thank you

    Adam

    JDBC:Oracle:thin:[user/password]@//[host][:port]/service

    consider that 'HOSTING' can be rather a virtual IP (VIP); which can be configured at the level of the BONE

  • Ask about the limitation of the use of the adjustment of CPU and RAM essbase

    Hello Experts,

    Is there a setting that limits the high use of essbase application on the server CPU and RAM in Essbase? If so, what are they?

    Thanks in advance for your suggestions.

    Kind regards
    Sudhir

    Published by: 637223 on December 23, 2009 16:40

    Usually I wish I could put more resources behind Essbase, not less. Why would you do?

    Are you thinking of something like SQL Server Resource Governor?

    If you are in a virtual machine environment, high-level products VMWare don't allow guys IT fairly accurately the range up to a server/server farm and governed how much CPU/DASD Gets a virtual machine.

    Kind regards

    Cameron Lackpour

  • can I load the creative cloud on more than one computer for the same price.  I would like to put on our other computer.

    I have the creative cloud on my laptop, but find I would like to have on my desk where there is more room.  I can load it on a second computer for the same price and if so, how do I change the email address to download?

    Hello

    Creative desktop cloud applications can be downloaded and installed on multiple computers, regardless of the operating system. However, the activation is limited to two machines per person associated with membership. See terms of use for more information. Learn how to turn off a Creative License on a cloud machine.

    You can download creative cloud under the following link: -.

    https://helpx.Adobe.com/creative-cloud/help/download-install-app.html

  • On the use of SQL * loader program pl/sql command

    Is it possible to develop a PL/SQL program that calls SQL * Loader (sqlldr userid =...) command?

    We want to package a process that loads data from a text file into a table, and we research it is possible to use SQL * Loader to the data loading process.

    You can launch sqlldr like all other orders of operation. There are several methods of cooking OS command, as

    1. external procedure PL/SQL: CHMOD FROM A PLSQL?

    Johan's blog: how to call PL/SQL kernel32.dll.

    2 Java Stored Procedure: Blog of Johan: using JAVA in PL/SQL - PART - I list files with timestamp , Blog of Johan: using JAVA in PL/SQL - PART - II operating system information obtaining

    3. external PREPROCESSOR Table function: no response on java not call windows in oracle command

    Johan's blog: list uses of disk operating system with external feature of the Oracle PREPROCESSOR Table

    Johan's blog: operating system from the list of files with external feature of the Oracle PREPROCESSOR Table

    4. using DBMS_SCHEDULER,job_type => 'executable' and job_action  => '/bin/sh' (may be)

  • UCCX 8.5.1 SU4 NFR kit allow the use of SQL database

    I'm running UCCX 8.5.1 SU4 thanks to the NFR UC 8 kit for my laboratory training and cannot create a DSN to a MSSQL Server. When I go to

    Subsystem | Database | DataSource

    and then click Add, the driver dialog box is grayed out and will not be open to select a jdbc driver. When I go to UCCX Serviciability, Control Center Network Services, and then expand engine UCCX then manager subsystem, the subsystem of the database is status "not configured" and did not start.

    I thought that the kit NFR providing the premium license would allow database capacity, which escapes me?

    Thanks, Jeff

    DB subsystem requires premium.  And I think that the NFR kit is premium.  Double you can check your license under system > AppAdmin license?

    Also, you acually don't have download a JDBC for UCCX driver?  If you do not, then it is probably your problem.  UCCX comes with zero drivers installed, and you will need to search the Internet for one.  Most people end up using it for MS SQL:

    http://sourceforge.NET/projects/jTDS/files/jTDS/1.3.1/

    Anthony Holloway

    Please use the meaning of the notes to help the great content in car to the top of searches.

  • additional licenses set forth for the use of Sql Tuning Advisor in SQL Developer 4.0.3

    Hello

    We have the Oracle 11 g Enterprise Edition Release 11.2.0.3.0 database. Do we need to acquire an oracle license extra for using SQL Tuning Advisor Option in SQL Developer 4.0.3

    No, they are installed by default.

    They must be licensed.

    Consult your contract or talk to your account manager Oracle for clarification.

Maybe you are looking for

  • Security Infinion TPM compared to MS Office 2007 (beta)

    I asked this question to Infinion society ' investigation: I use a Tablet Toshiba M400, Infinion TPM installed.» I tried Office 2007 beta, but in Outlook I can only read my headers of the message body is empty. Can help you to adjust Office 2007 sett

  • connect labveiw 8.2 with nor pci-6251

    I have no pci-6251 and its cd driver with labview 8. How can I connect the daq with labview 8.2 and run programs

  • Update XP - IE cannot load page

    When I try to update a computer running XP, I get the page that says that IE cannot load this page when I try to visit microsoft update. I can get other ms sites and other sites though. Pls help!

  • I get a paper jam when using the duplexer

    I'm on my 3rd oj6500a.  I had several problems.  The most recent is 2 sided.  I've been in touch with technology services and they replaced the whole printer again, except the duplexer. This is the same as that supplied with the original printer.  tw

  • Problem installing old printer.

    I downloaded the software installation and driver for printer HPC4780 on a n265sa of flag and tried to install. It goes up to then saying file not found. Any idea?