Tagged Questions
TOAD is a database query tool from Quest Software. There are versions of TOAD that can query Oracle, SQL Server, MySQL, PostgreSQL and more. It provides query editing & reporting, debuggers, performance analyzers and many other tools.
7
votes
5answers
665 views
Where can I get Toad syntax coloring schemes?
I am a big fan of the light colors on a dark background color scheme for programming - which is unfortunately not what Quest's Toad comes with by default.
I notice that it is possible to export ...
6
votes
3answers
95 views
Tool for making diagram from SQL query
I have this complicated SQL query for Oracle that I want to visualize in a diagram to make it understandable for my co-workers. I tried at http://snowflakejoins.com but it just chokes on it.
Has ...
5
votes
4answers
240 views
Why does a query with a sub-select cost less than query with a constant in Oracle
I've got an SQL-table with some million entries and I tried to query how much entries are older than 60 days (Oracle 11.2.0.1.0).
For this experiment I used 3 different versions of the ...
5
votes
6answers
6k views
Is there anything as good as TOAD for Postgres (Windows)?
I'm just looking for a management tool like TOAD for Postgres. Anyone used a good one?
Edit - I work mostly within the data itself and the database already has a mature model/design. I use the edit ...
4
votes
1answer
707 views
How to export the result into different tabs of Excel in Toad for Data Analyst?
Does anyone know how to export results from more than one query into different sheets of the same Excel workbook using the report automation in TOAD for data analyst?
Thank you
4
votes
15answers
2k views
SQL/Query tools?
I haven't really done a ton of database work in a few years and have become unaccustomed with the tools available. Back a few years ago I was working with oracle databases and was using primarily ...
3
votes
3answers
100 views
SQL - insert into table if value exists in another table
I am trying to get the sql query below to work but I am getting an error, my problem is as follows:
I need to loop through a results set from a select statement (this part is fine). Inside the loop ...
3
votes
3answers
234 views
Automatically inserting column names for table in TOAD for Oracle
I am looking for a way to automatically insert column names in TOAD for Oracle to make it easier for writing queries.
Ideally, I would like to type something like the following:
select * from ...
3
votes
1answer
405 views
Oracle - Materialized View confusion (is Toad IDE wrong in displaying MV in Tables section?)
I'm confused about Materialized views. Either it is the Toad IDE that I am using that is confusing me, or its that I don't understand MVs enough.
I created a materialized view in Oracle by ...
3
votes
1answer
2k views
ORA-00932: inconsistent datatypes: expected - got -
I have been using Oracle(10g.2) as a PHP programmer for almost 3 years, but when I gave an assignment, I have tried to use the ref cursors and collection types for the first time. And I
've searched ...
3
votes
3answers
2k views
How do I generate a script of all database objects in Toad for MySQL
In the freeware version of Toad for MySQL (latest version), I can generate a script of all tables in my database in one file. However, for stored procedures and functions, Toad generates a separate ...
3
votes
4answers
137 views
How to elmininate values in an Oracle-SQL-Table which mean the same?
I've got a table like this:
ID | Val1 | Val2
---------------------
1 | 1 | 2
2 | 1 | 3
3 | 2 | 1
4 | 2 | 3
5 | 3 | 1
6 | 3 | 2
now my ...
3
votes
1answer
890 views
How to pass an array parameter in TOAD
Using toad and an oracle database, how can I call a sp and see the results by passing an array to one of the parameters of the sp?
3
votes
24answers
4k views
What do you use to write and edit stored procedures in Oracle?
There are many options for editing and writing Stored Procedures in Oracle; what is the best tool for you and why? (one tool per answer.)
2
votes
1answer
69 views
Will DBMS_STATS analyze the table?
I use DBMS_STATS.GATHER_SCHEMA_STATS procedure to collect statistics in my code.
BEGIN
DBMS_STATS.gather_schema_stats
(ownname => '<SCHEMA NAME',
...
2
votes
3answers
159 views
How to get information about compile error in Oracle/TOAD
I'm using TOAD to develop a stored function in an Oracle database. When I click the "run as script" button in TOAD, it tells me that the script was executed with 0 errors and 1 compile errors. Where ...
2
votes
3answers
558 views
Query Help - String in where clause has & character
I am running an SQL (Oracle) statement like that
select * from table
where table_id in ('265&310', '266&320')
While running through TOAD, it consider & as some variable placeholder and ...
2
votes
2answers
2k views
variables in TOAD scripts
I have a SQL script that is being executed in TOAD. Currently I have it laid out with just statement after statement, thusly:
select such-and-such from somewhere;
delete other-thing from ...
2
votes
2answers
760 views
Problem with Toad for MySQL and version control
I'm trying to use SVN with Toad for MySQL to keep two DBs on two development machines in sync. When I modify a table on one machine Toad changes the appropriate scripts and checks them in just fine.
...
2
votes
2answers
5k views
Oracle sql query, concatenate fileds with CASE section
I'm currently generating SQL insert statements from more than one tables, and in the generated data I need to use a CASE statement, like this:
select 'INSERT INTO TABLE1 (f1, f2, f3, f4 ...) values ...
1
vote
2answers
27 views
Oracle script client that exports query result as UPDATE statement
I use Quest TOAD for Oracle and Quest SQL Navigator for Oracle as my database
query tools of choice.
These tools allow me to export the query results grid as INSERT statements.
For example
...
1
vote
1answer
17 views
Extract report from multiple queries with Toad from Oracle
Is it possible to extract an Excel with multiple dataset populated from multiple queries? I need to get a report.
Currently I launch every query and I extract the resultset in a separate excel.
1
vote
1answer
17 views
Creating a specific database deployment script
I have been asked to migrate a schema from our testing area into our staging area.
As someone that has never done this before my first instinct would be to paste every script into one large script ...
1
vote
1answer
66 views
Error in Toad - ora 12154
I am trying to make a connection using Toad to a database (xe10 free edition) and it givea me a error:
ORA-12154
I tried changing the sqlnetORA to:
SQLNET.AUTHENTICATION_SERVICES= (NONE)
and ...
1
vote
2answers
77 views
Why doesn't this PL/SQL procedure work?
I have a cursor which returns two values: one which I will use (and therefore will assign to an out variable) and another which I've only had returned to make the ROWNUM thing work.
If I run the ...
1
vote
1answer
54 views
to_char produces different outputs depending on where the procedure is called
We're using a stored procedure provided by a remote system. For testing purposes, I call this procedure from my development machine. Now the problem is if I call the procedure from Toad, everything is ...
1
vote
2answers
59 views
Read a Text/CSV file from an SQL statement
I wish to use an external Text/CSV file to read data and run an SQL Query. Is this possible without using the External_Table concept? I do not have write permissions in the DB, hence cannot create a ...
1
vote
2answers
42 views
Cannot connect Oracle 32bit on X64 machine
I have installed the Oracle Client 10.2.1 32bit in an X64 WIN7 laptop. I have Installed also TOAD and PLSQLDeveloper but both of them are not working and the error is: ORA-12154:TNS could not resolved ...
1
vote
3answers
48 views
Oracle to_date() incorrect output
There must be a very simple answer, but I can't find it anywhere.
I have the following which is a section of my select statement:
case when q.renewal_date is not null then
...
1
vote
1answer
52 views
Help managing many-to-one results for lookup
I didn't see this exactly asked, so I'm hoping it wasn't.
I have a table that has multiple columns with code variables and a table that has all lookup codes and descriptions for the whole database. ...
1
vote
1answer
234 views
Toad for oracle hangs on this query: select sql_text from V$sqltext_with_newlines where address = (select DECODE
What is it for?
select sql_text
from V$sqltext_with_newlines where
address = (select DECODE(RAWTOHEX(sql_address), '00', prev_sql_addr, sql_address
)
from V$session
where username = :uname
and ...
1
vote
1answer
45 views
How to know which all tables have the column ex PHONE?
Please advise.
In Db2 database how can I know the list of tables that contain the column ex PHONE?
Thanks,
Srihari
1
vote
1answer
54 views
ToadStudio passwords in settings file, security concern
I need to share a connections setting file for ToadStudio SQLeditor.
I do have some concerns about the passwords that are stored in the settings file.
The file currently looks like this:
...
1
vote
1answer
251 views
Error ORA-12560 using Toad
I am using toad with Oracle now, and after the installation, I tried to connect using toad, but an error pops up:
ORA-12560: TNS:protocol adapter error
I have already tried to set the ...
1
vote
1answer
29 views
Mysterious disappearance of an Index in an Oracle 10g table
I have a table in an Oracle database. An Index has mysteriously disappeared. Is there any way to find out how that happened? I am using Toad for Oracle Version 9.5.0.31
Thanks
1
vote
3answers
460 views
SQL Plus vs Toad IDE - Running insert in SQL Plus takes significantly longer
I'm running a query like this:
INSERT INTO TableA (colA, colB)
Select ColA, ColB
from TableB
This is huge insert, as it is querying over 2 million rows an then inserting them into the table. My ...
1
vote
1answer
403 views
Oracle 11G and Toad
I installed trail version of Oracle 11g 64 bit on my laptop. I installed Oracle 10.6.1.3
and it is giving me an error saying Oracle 32 bit database not found?
I am new to Oracle and wondering whether ...
1
vote
2answers
2k views
How to insert & in oracle using toad? [closed]
Possible Duplicate:
select * from table_name where column like ' '
How do you insert the & symbol as data in an Oracle database, using Toad? Example:
INSERT INTO ...
1
vote
0answers
249 views
MySQL datetime error in Toad
Toad complains: "Unable to convert MySQL date/time value to System.DateTime" when trying to display data in a table on a remote linux mysql database. This same issue is addressed here:
stackoverflow ...
1
vote
2answers
70 views
Toad and SQL Server 2005
where a.system_nr =''''5300'''' and
a.external_status_cd = '''''''' and
a.cust_acct_id = b.rel_cust_acct_id and
b.cust_acct_id = c.cust_acct_id and
c.cust_acct_id = ...
1
vote
1answer
1k views
Getting Toad 9.7 to work on Windows 7 x64
I'm trying to get Toad 9.7 to work on a new installation of Windows 7 x64. I installed a 64-bit Oracle instant client (manually by extracting to a folder and setting some environment variables). ...
1
vote
1answer
298 views
Standard Toad template for formatting Oracle PL/SQL code?
For a long time, I have used Red Gate to format my T-SQL code, and I have it set to something pretty readable and I always just accept it (saved many years of my life) and move on.
I've been fooling ...
1
vote
1answer
660 views
Getting Error while executing SELECT statement in Toad for MySQL
I am getting this error while I am trying to execute a simple SELECT statement in Toad
MySql.Data.Types.MySqlConversionException
Unable to convert MySQL date/time value to System.DateTime
What ...
1
vote
2answers
178 views
Separation of statements in TOAD
I am a long time SQL Server users and am VERY new to Oracle.
In SQL Server, I can do the following
DROP TABLE Blah;
CREATE TABLE Blah(yada int);
When I run a similar statement in Oracle, the DROP ...
1
vote
1answer
255 views
Oracle TOAD in read-only mode
I'd like to use TOAD in read-only mode to run queries on an Oracle DB in read-only.
I've read that you should copy the file readonly.lic over toad.lic.
What about the file FullToad.lic?
If anyone ...
1
vote
2answers
252 views
How do I get the return value from a function in Oracle using Toad
How do I find out in Toad what the return value of a function is?
I'm running something like this code:
declare r number;
begin
r:= packagename.functionname(paraname);
end;
I can't work out ...
1
vote
1answer
871 views
toad for oracle autocomplete dropdown
Toad for Oracle has an autocomplete feature.. you type SELECT * FROM USER. and then press Ctrl+. and a drop down appears where you can choose from the objects available to you.
This functionality ...
1
vote
1answer
756 views
Does SQLDeveloper have a tool to copy/clone users like Toad?
Does SQLDeveloper have a Toad-like tool to copy/clone an Oracle database user?
If not, I'll resort to: How to Clone a User in Oracle
1
vote
2answers
221 views
Why is TOAD faster than my java code?
I want to execute a select query and be able to get the count of the results, without using "COUNT(*)", like TOAD does. The concept is to give the option to the user to input any 'select query' he ...
1
vote
1answer
209 views
Why is Oracle connectivity using Sitecore or Toad across a firewall slower than using SqlPlus?
I have a third party .Net web application (Sitecore) which connects to an Oracle database on a server in my DMZ (separated from my LAN with a firewall). Connectivity between the application and the ...