How can I format pl-sql code with my own settings

Are there any tools for formatting pl-sql in SD 1.1 excepting Ctrl-B?
How can I adopt Ctrl-B for my own needs?

There are a couple of options you can tweak in Tools - Preferences - SQL Formatter.
It's very basic at this time, but will be enhanced in future releases. You can vote to add weight and add comments on the SQL Developer Exchange, there are 3 or 4 requests already for this.
K.

Similar Messages

  • How can i re-activate my ipad with my own ID

    How can i re-activate my ipad with my own ID, pls i need an urgent reply.
    Thanks.

    Are you trying to activate a used iPad? You may not be able to due to being Activation locked. The previous owner did not erase everything.)
    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
    Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/TS4515
    How to Fix an iPad When It Says It "Could Not Activate"
    http://everydaylife.globalpost.com/fix-ipad-says-could-not-activate-26085.html
     Cheers, Tom

  • How can I authorize an iPod Classic with my own Apple ID?

    How can I authorize an iPod Classic with my own Apple ID? It belonged to someone else so presumably it has been authorized with another id. Your help and answers are much appreciated.

    To make sure the file system is closed properly iPod classics should be ejected from the iTunes interface, or if iTunes isn't running, using the "Safely remove hardware" tool. That message is a standard warning. If the device shows up in iTunes you can configure the selection of media content that you want to sync to it and press the sync button to start the process. iTunes may spend quite a long time "thinking" before any tracks are copied over.
    If you think there might be something wrong with the device itself see Corrupt iPod classic for some troubleshooting tips.
    tt2

  • How can I use the QR codes with my iPad 2. do I need to download first an app ?

    How can I use the/read the QR codes with my iPad 2 ? Do I need to download an app ?

    Yes.  There are quite a few available for free in the app store

  • How can I make my source code with jar file?

    I use JDK1.6.0. I can open a class file from rt.jar and get its source code. Does this because open source JDK? I wander how I can make my jar file with source code.

    CeciNEstPasUnProgrammeur wrote:
    youhaodiyi wrote:
    But why I can read source code from rt.jar? I found there are only class files in it.I say it's highly likely that you can't and your IDE's settings rather automatically refer to the src.zip file in the JDK's directory.I see. That's true. I use eclipse as the source code reader. It may refer to the source code zip file automatically.
    Thanks all.

  • Why does my phone automaticlly connect with the closest wii fi? How can I get it to stay with my own wii fi in my home instead of my neighbor's?

    Help! My phone keeps connecting with wi-fi other than my own. When I am in my bedroom, for example, it tries to connect with my neighbor's wi-fi. It only started doing this recently.

    Have the phone "forget" the neighbor's wifi SSID.

  • How can I connect NetBeans 6.1 with SQL Server 2005?

    Hello guys...
    how can i connect NetBeans 6.1 with SQL Server 2005?
    there is no SQL Server in Server list when we create a new Web Project and choose Server.
    I'm new to NetBeans and this is my first time of posting.
    If has some errors and unwanted disturbing,pls understand me. Thanks.
    (If you have references or some snippets, i'll be glad if u can share.)
    scsfdev

    The JDBC-ODBC bridge wasn't recognizing any of the primary keys I had set up in SQL Server. After lots of head banging, here's the solution I came up with:
    1. Download the appropriate driver. SQL Server 2000 requires the SQL Server 2000 JDBC driver (http://www.microsoft.com/downloads/details.aspx?FamilyId=07287B11-0502-461A-B138-2AA54BFDC03A&displaylang=en).
    SQL Server 2005 download: (http://www.microsoft.com/downloads/details.aspx?familyid=C47053EB-3B64-4794-950D-81E1EC91C1BA&displaylang=en)
    3. After installing, right-click on "Libraries" in your project, and choose "Add Library...". Next, give it a name (i.e. SQLServer2000), and select "Class Libraries".
    4. On the next screen, find the JAR files (should be in C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\), and add them under the "Classpath" tab. It will now be available under "Libraries" for future projects.
    5. You can now create a connection to a specific database under the "Services" tab (next to "Projects" and "Files" in the top left of the screen). Select "Microsoft Sql Server 2000 (Microsoft Driver)" and format the "Database URL" like this:
    jdbc:microsoft:sqlserver//YOURSERVER:1433;DatabaseName=YOURDATABASE
    1433 is the default port, though your DBA may have changed it.
    I posted a simpler version of this on the NetBeans.org FAQ page - they had the following title with no content on the answer page:
    "Cannot Select Tables From MsSql 2000 Because It Says No Primary Key Next To Each Table But The Tables DO Have A Primary Key. What Do I Do?"

  • How can I print the "number lines" with the code in Visual Studio?

    How can I print the "number lines" with the code in Visual Studio?

    Hi BillionaireMan,
    What about your issue now?
    If you have resolved it, you can share the solution here, which will be beneficial for other members with the same issue.
    If you did not, please tell us more information,we will try my best to help you.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I load data into table with SQL*LOADER

    how can I load data into table with SQL*LOADER
    when column data length more than 255 bytes?
    when column exceed 255 ,data can not be insert into table by SQL*LOADER
    CREATE TABLE A (
    A VARCHAR2 ( 10 ) ,
    B VARCHAR2 ( 10 ) ,
    C VARCHAR2 ( 10 ) ,
    E VARCHAR2 ( 2000 ) );
    control file:
    load data
    append into table A
    fields terminated by X'09'
    (A , B , C , E )
    SQL*LOADER command:
    sqlldr test/test control=A_ctl.txt data=A.xls log=b.log
    datafile:
    column E is more than 255bytes
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)
    1     1     1     1234567------(more than 255bytes)

    Check this out.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/ch06.htm#1006961

  • How can i format my external hard drive to write files from Mac without loosing the files that i alredy have on my external hard when i used it with windows?

    How can i format my external hard drive to write files from Mac without loosing the files that i alredy have on my external hard when i used it with windows?
    I have been using Windows to write files to my 1TB WD external hard drive and I do not want to format to loose the files capacity of around 500GB
    Someone, Please help

    Hi Allen,
    Is there any way to store the back up to Mac and restore after formating?

  • How can i format an iphone with an differant apple id ?... the phone is locked and it needs the original apple id to activate it which i dont have

    how can i format an iphone with an differant apple id ?... the phone is locked and it needs the original apple id to activate it which i dont have .... help me

    Moh'd . Hassan wrote:
    how can i format an iphone with an differant apple id ?... the phone is locked and it needs the original apple id to activate it which i dont have .... help me
    Then get the previous owner to remove it: Find My iPhone Activation Lock: Removing a device from a previous owner’s account - Apple Support

  • How can I format an HD with System 10.4 and install Leopard Snow?

    How can I format an HD with System 10.4 and install Leopard Snow?

    You need to partion the hard drive using Disk Utility. On one partition install 10.4. On the other 10.6. As a note I trust you are doing this on a MBP and not a PPC Mac because 10.6 won't install.

  • HT1604 i erased my hfs+ with ubuntu, how can I format it back to hfs+ please help

    i erased my hfs+ with ubuntu, how can I format it back to hfs+ because ubuntu rejects the cd or usb formatted to mac os extended journaled and i am in a stalemate position. What can i do?

    You're running Ubuntu, and that operating system generally doesn't utilize HFS+. 
    That you're then asking this question implies you were intending to not do that, or that you were intending to run multiple operating systems within one GPT-partitioned disk. 
    I'm going to guess you wanted multiple operating systems.
    If you had intended to partition your disk and to use various file systems within the partitioning, then the command(s) that were used to partition or repartition your disk were not what was probably intended.  (And this presumes that the two systems share compatible boot paths; that's possible with a system that can coexist within Apple's Boot Camp or Ubuntu or another operating system booted as a guest within one of the add-on OS X virtual machine products.  I don't know for certain that Ubuntu can coexist.)
    To get OS X back onto this same volume, you'll need to figure out if you have a GPT and then what's in your GPT, and whether there's a partition large enough for OS X to exist, or whether you can repartition your GPT disk to allow OS X to be reinstalled or reloaded into the partition.  Or you'll need to wipe the whole disk, and replace its contents with a freshly-partitioned disk, and then load a copy of OS X that's been recovered from backup or freshly installed from distribution.  Or you'll need to provide another disk, and then partition and load an operating system (either Ubuntu or OS X) onto that as appropriate.
    The tools for doing the repartitioning within Ubuntu are best discussed with folks more familiar with that operating system; I'm not sufficiently conversant to suggest tools for that.  I'd suggest a forum specific to Ubuntu for that.  The tools used to repartition the disks on OS X generally involve the Disk Utility tool, whether booted from DVD (Snow Leopard), from the USB key disk (Lion), from an external OS X disk, or potentially using Target Disk Mode from another OS X system.  And the OS X tools for repartitioning are destructive; they generally don't save what's in the existing partitions, if you need to make an existing partition smaller.
    The usual sequence (and the one that's easiest to describe) to establish the environment starts by wiping the whole disk, and establishing GPT partitions of the appropirate sizes using Disk Utility or its Ubuntu GPT-aware analog, and then loading the target operating systems into each.  Alternatively, you can read the Boot Campe documentation, or review the documentation with the particular virtual machine product that you're going to choose and use on OS X for details of how to manage its guest operating systems.
    Without some idea of your end-goal here (and where you're stuck in the current environment), it's hard to provide more specific suggestions.

  • I don't own a MAC. I can probably use one at the library. I am trying to publish my book with Apple's ibooks, etc. Since my files are in Word.doc or html; how can I format my book so as to publish it?

    I don't own a MAC. I can probably use one at the library. I am trying to publish my book with Apple's ibooks, etc. Since my files are in Word.doc or html; how can I format my book so as to publish it?
    www.amessageforthehumanrace.org

    Use an aggregator and follow their instructions for formatting.

  • How can I get the return code of SQL*Plus under Win2000Pro

    How can I get the return code of SQL*Plus under Win2000Pro ?

    In a DOS batch script? Try ECHO %ERRORLEVEL%
    -- CJ

Maybe you are looking for

  • Trigger workflow whenever  Req. deliv.date of a SO is changed

    Hi, I have a requirement where i have a workflow which will be trigerred whenever Req. deliv.date of a sales order is changed. I have added an event for this in a customized business object type. This event is the start event for the workflow. Now i

  • Can pattern swatch be created programmatically?

    Is it possible to created a pattern swatch programmatically? I could find information on creating custom color swatches using xml format but don't know about pattern swatches. Please help me!

  • Adobe Acrobat XI CC installs on multiple computers at school

    I am having trouble installing Acrobat XI on multiple computers at our school. I have used the packager but it does not install Acrobat because it is in the Exceptions folder and needs to be installed first. So we are installing it using the AcrobatP

  • Creating transport for PI deleted objects

    Hi all, PI newbie here. I have deleted an Integration Scenario as it is no longer needed. I can see this in my Change List, along with the CS object from which this has been removed. How do I get these objects into a transport request? When I right-c

  • CC LR5 Question

    I have the latest versions of LR5 on two Windows computers with saved and cataloged images . If I buy Creative Cloud, do I have to download the CC version of LR5 to my desktop and then how do I then access those images or are they automatically impor