Quantcast
Channel: Toad for Oracle Forum - Recent Threads
Viewing all 4385 articles
Browse latest View live

Alias on new line, how do I get it on the same line in the formatter options?

$
0
0

I'm using 12.12.0.39 Toad for Oracle.

using the formatter it puts pseudo names on a new line.

For example.

SELECT 2
           SQL_CODE,
       SOLDCUST.NAME
           CONTRACT_CUSTOMER_NAME,
       FROMCUST.NAME
           BA_ASSGN_TO_CUSTOMER_NAME,
       FROMCUST.LOCATION_CODE
           BA_ASSGN_SHIPTO_LOCATION,

I want this to look like this

SELECT 2                                                            SQL_CODE,
              SOLDCUST.NAME                                CONTRACT_CUSTOMER_NAME,
              FROMCUST.NAME                               BA_ASSGN_TO_CUSTOMER_NAME,
              FROMCUST.LOCATION_CODE           BA_ASSGN_SHIPTO_LOCATION,

I can not find the settings in the formatter options to set this.

Thanks


RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

It sounds like you accidentally hid the right hand side of the Schema Browser.   Hit F12 to bring it back.

RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

Or, if you want to see the columns in the object palette, hover over the toolbar buttons in the object palette...look for the one that says "show columns" and click it.

RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

I did something less than wise that's for sure.  When I hit pf12 I see the schema browser on the left but the object palette is still blank.  I see the table count at the bottom with my schema name.  I can't seem to populate the object palette. UGH.

RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

would you mind posting a screen shot just so I'm clear what the problem is?   The object palette should never be completely blank.   And Schema Browser and object palette should work independently.   Maybe you set a filter on object palette?   

Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

Hello.  I've turned something off.  I use to be able to see the schema browse in the object palette.  If I click on Database --> Schema Browser I see the tables.  Can you tell me what I need to do to see the tables/ column information in the Object Palette?

I work for a large company and do not have access to change any profiles.

RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

I want to see the table information in the Object Palette.  When I PF12  I  toggle the middle information on and off not fill in the object palette.

Sorry - new to Toad so I may be using incorrect terminology. 

RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated


RE: Toad 12.6 Object Palette is blank. The Schema browser is not populated

$
0
0

It looks like you posted a screenshot but I just see an icon.   Will you email it?    john.dorlon@quest.com

thanks.

Read only connection

$
0
0

Hi,

Read only connection is really nice feature...and many customers (and me sometimes) use them.
Problem with that connection is that many menu items (i.e. rebuild table) are not enabled in such a connection, reducing real work capability.

Mine proposal is if you can recheck to leave all features active and somehow prevent execution on some other buttons...(i.e. "Run", "Finish", "Execute", etc ....later in the form chain of some action).
In this way we should be able to do almost everything (in generation part, where Toad help us a lot) but prevented form really execute it.

I know it is hard, but really think that some reconsideration should be done at least for some easy to implement part (i.e. mentioned Rebuild Table/9index part).

Brg

Damir

RE: Schema Doc Generator - All in one file

$
0
0

I am looking for same solution. Any pointers yet please ?

Thanks

RE: Schema Doc Generator - All in one file

$
0
0

There is no longer an "all in one file" option, sorry.     Last time we redid the output to make it look nicer, we decided that for most schemas, a "single file" option makes a very large html file.  It's a good point, however, about being able to do a search.    That might be a good feature to add.

Schema Doc Generator - All in one file

$
0
0
Hi folk

I was used to generate the HTML Doc out of the Schema for reference. It was so nice to use the full text search function of the browser to navigate within all table documents.
With Toad 11.0.0 it seems no longer possible to generate one big file containing all table doc.

Any one with an idea? Help very much appreciated!
Regards, Thom

RE: SYS.XMLTYPE field - would like to be able to edit field in query results

$
0
0

Toad doesn't support editing of XMLTYPE.    We would like to.   We know it's important.   XMLTYPE in Unicode mode technically isn't supported by the OCI.  So we have to select XMLTYPE as CLOB just to be able to display it, and we can't do updates that way.   If/when a solution becomes available, we'll make appropriate changes in Toad.

SYS.XMLTYPE field - would like to be able to edit field in query results

$
0
0

When I run my query and try to edit the XMLTYPE field, FILE_NAME, why does Toad tell me it is Read Only.

SELECT t.*, rowid FROM DS_OUTBOUND.DS_GBS_ACK_DATAXMLtmp t;

My Table:

CREATE TABLE DS_GBS_ACK_DATAXMLTMP
(
UNIQUE_ID NUMBER,
CLIENT_ID NUMBER,
CLIENT_NAME VARCHAR2(100 BYTE),
FILE_TYPE VARCHAR2(10 BYTE),
FILE_NAME VARCHAR2(255 BYTE),
FILE_DATA SYS.XMLTYPE,
STAGED_DATE DATE DEFAULT sysdate,
PROCESSED NUMBER DEFAULT 0,
PROCESSED_DATE DATE,
INSUREDCLAIMNUMBER VARCHAR2(4000 BYTE),
CLAIMREFERENCENUMBER VARCHAR2(4000 BYTE)
)


RE: Module with cursor used xmltable not show up on package body in schema browser

$
0
0

Do you just need to refresh your schema browser?  If that's not it, can you post the whole package?   Or enough of it to reproduce the problem?   

Module with cursor used xmltable not show up on package body in schema browser

$
0
0

Hi,  I have a PL/SQL package created with private modules which contains cursor using xmltable (see below), I was able to compile the package fine.  However, the module DOES NOT show up in the package body in schema browser.  Can you please advise why?  Thx, Stephen

  cursor cur_extract
    is
    select x.item,
           x.frconsumer,
           x.fritemdesc,
           x.frlegacydesc,
           x.frmodel,
           x.frcomments
    from   fr_trans_in_xml_temp,
           xmltable ('$d/main/DATA_RECORD' passing xml_data as "d"
           columns
           item          varchar2(25)    path '/DATA_RECORD/ITEM',
           frconsumer    varchar2(150)   path '/DATA_RECORD/FRCONSUMER',
           fritemdesc    varchar2(35)    path '/DATA_RECORD/FRITEMDESC',
           frlegacydesc  varchar2(19)    path '/DATA_RECORD/FRLEGACYDESC',
           frmodel       varchar2(13)    path '/DATA_RECORD/FRMODEL',
           frcomments    varchar2(250)   path '/DATA_RECORD/FRCOMMENTS'
           ) as x;

My TOAD version is 12.5.1.1 xpert edition, Oracle 11g Release 2.

RE: Export Dataset with Parameter from List Iterator

$
0
0

    Select * from &MySchema..&My_tables_list_iterator;

Toad For Oracle 12.10.0.30

I have the same issue and no resolution after 2 hours of searches and trial and error.

The Set Variables dialog in the Export Dataset action does not show List Iterator variables in the Environment Variables list.

The &MySchema in my query is a global toad variable, so that works fine. But the table names that I want to loop over should come from the parent List Iterator, but that iterator variable is not recognized at all.

Export Dataset with Parameter from List Iterator

$
0
0

Hello,

I tried to export dataset like

select :NAMEN as UEBER from dual

I used "set variables" and bind :NAMEN with the List Iterator NAMEN (two entries : NAME1,NAME2).

I am export this as an excel file and the output is:

UEBER
%NAMEN%

I would expect NAME1 (for the first iteration) ... where is my fault ?

greets

Ralf

RE: datagrid separate window

$
0
0

I can think of a few workarounds:

  1. Press F2 or shift-F2 to maximize the grid to full screen, if you just need to see it temporarily.
  2. Use the script runner to execute your query there, because it launches in a separate window with its own datagrid.
  3. Open a new instance of Toad and maximize the grid there if you need to keep the data handy to compare with the main window.
Viewing all 4385 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>