0
votes
8answers
197 views
Monitoring a database instance
Anyone have any idea? And any open source sofware which also seens to perform this kind of functionality?
0
votes
1answer
2 views
Toad: Debugger question
Hi guys:
Why the a-in param in the function info will become undefined identifer in the initialize_values stored proc? But I can executeit normally without any problem.
CREATE OR …
1
vote
3answers
57 views
question about pl/sql stored program text
hi all.
I use TOAD to do my PL/SQL development. In TOAD when i type a procedure name and press f4, I can see this procedure's source code. I think TOAD get the source code from v$s …
0
votes
3answers
62 views
Multiple Select Statements within IF
I could use some help to write a prog./sql construct for a report..
The Sql should first check for the prompt & then decide which "select" statements should run
something lik …
1
vote
1answer
27 views
why i can’t stop my pl/sql program at breakpoint which i set in TOAD
hi guys,
i have a simple oracle stored procedure proc1 as follows:
CREATE OR REPLACE PROCEDURE SYS.proc1
IS
total NUMBER := 0;
temp INTEGER := 0;
BEGIN
FOR i IN 1 .. …
0
votes
1answer
31 views
TOAD sql editor - prompt when file changed?
In TOAD, if I'm editing a sql file in the sql editor window and that file is changed (ie: by making an edit to it in Textpad), TOAD doesn't prompt you to get the changes. Is there …
0
votes
0answers
29 views
DBMS debugger causes TOAD to hang
I can start the dbms debugger in Toad and use it normally but if I hit the 'halt execution' button or just hit the 'Run' button to reach the end of the function it causes TOAD to h …
0
votes
6answers
124 views
Free alternative of TOAD for DB2
I am currently using Toad for DB2 to work on my DB2 database. I just wanted to know is there any free alternative to Toad for DB2,
Note:
Similar question is posted earlier, but …
0
votes
3answers
43 views
Tool Compare the tables in two different databeses
I am using Toad. Frequently i need to compare tables in two different test environments.
the tables present in them are same but the data differs.
i just need to know what are the …
3
votes
14answers
501 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 …
0
votes
3answers
94 views
Toad ‘insert record’ button disabled.
I'm using Toad 8.6 and when I try to add new records using the Schema Browser, Data tab, my 'insert record' is grayed out. so, I installed the 9.6 version and the same problem pers …
3
votes
22answers
2k 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.)
1
vote
4answers
88 views
Query Optimization - Why does this speed up the Query?
I'm using Quest's TOAD for SQL Server on a SQL Server 2000 Server.
Here is my query:
SELECT CASE SLCE.GroupName WHEN 'Other' THEN ARM.FBCOMPANY
WHEN …
0
votes
1answer
213 views
Oracle Query Help - Using TOAD
Hi all,
I have used this type of functionality before but is MSSQL but can't get it to work for Oracle, any tips?
DECLARE
MY_TBL NUMBER := 1;
BEGIN
IF(MY_TBL > 0) TH …
0
votes
1answer
102 views
“no descriptor for this position” Oracle error
We're trying a basic insert statement:
INSERT INTO HOLIDAY (HOLIDAY_TYPE_CODE, CALENDAR_NAME, HOLIDAY_DATE, DESCRIPTION, CREATE_TS,
UPDATE_TS) VALUES (2, 'CZK', '17-NOV-2009', NU …
