0
votes
2answers
25 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 …
0
votes
2answers
37 views
Debug Oracle stored procedure using Toad
Hi guys,
I have the following situation:
I have a java code launching a stored procedure. What I want is to launch the java code, and when arriving into the stored procedure, to start debuggin it …
0
votes
2answers
18 views
dotConnect for MySQL license cannot be used with TOAD
Hello. I am trying to connect to MySQL with TOAD. I have dotConnect for MySQL (trial) installed on my PC. The very first time TOAD's connection with MySQL worked fine and I worked with that connection …
1
vote
2answers
173 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.
…
0
votes
4answers
60 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 differences in the …
1
vote
5answers
772 views
Is there anything as good as TOAD for Postgres (Windows)?
Hi guys, 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 …
0
votes
1answer
11 views
How do I diagnose steps in a trigger on MySQL
I have two tables:
source table
result table
I have an after update trigger on my source table which updates some records in result table. the problem is, my trigger is not updating result table …
0
votes
1answer
32 views
Difference between ‘Execute’ and ‘Execute as script’
Hi Guys.
I'm currently experiencing what I believe is strange behavior when using Oracle with TOAD.
I have a query:
SELECT
COUNT(as_at_date)
FROM
job_log
WHERE
as_at_date = …
3
votes
15answers
533 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 …
0
votes
8answers
201 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
3 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 REPLACE PACKAGE …
1
vote
3answers
72 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$sqltext view. To …
0
votes
3answers
76 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 like (pseudo-code)
…
1
vote
1answer
68 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 .. 5
LOOP
…
0
votes
1answer
48 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 a way to get TOAD …
