Search the web
Sign In
New User? Sign Up
utPLSQL-Info
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 99 - 128 of 177   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
99
Hi all, I'm having trouble installing utPLSQL on my Oracle DB. The version is Oracle8i Enterprise Edition Release 8.1.7.1.0. I simply ran the utplsql_install...
bloke_job
Offline Send Email
Apr 12, 2002
3:24 pm
100
... This does sound suspiciously like the DB is broken. Do you have access to the profiler (DBMS_PROFILER package)? You could try running with this and then...
Chris Rimmer
chrisrimmer1970
Offline Send Email
Apr 15, 2002
1:13 pm
101
Friends, Patrick Barel in the Netherlands has generously made available to us his own custom-built discussion forum software to allow us to build threaded ...
Steven Feuerstein
stevenfeuers...
Offline Send Email
Apr 23, 2002
6:00 am
102
Hello All, I had posted this on the sourceforge.net bug tracker. I'm posting it here again, just in case. if you want to look at the attachements, refer to the...
kamal_k_joshi
Offline Send Email
Apr 23, 2002
6:13 pm
103
I've just upgraded to TOAD 7.3. Quest now include the script I wrote to run utPLSQL from TOAD, plus links to the project homepage at SourceForge. Hey, I even...
chrisrimmer1970
Offline Send Email
May 2, 2002
11:33 am
104
Hi folks, I just fooled a bit around with the utplsql packackage. I got the betwnstr example run and right after that I tried to integrate my testing scripts...
Juergen Aschenbrenner
jasche@...
Send Email
May 16, 2002
2:00 pm
105
... Try putting UT_BAR in the FOO schema and run utplsql.test logged in as FOO. If I remember correctly, by default utPLSQL assumes that the program or package...
Chris Rimmer
chrisrimmer1970
Offline Send Email
May 17, 2002
12:47 pm
106
Hi, Does anybody have any idea how to write unit test for testing high- level functions ? I say that function is high-level if it calls some other nontrivial ...
a_tumanov
Offline Send Email
May 21, 2002
2:54 pm
107
Thanx Spencer, David and Steven for Your quick reply, ok, now I put UT_BAR along with BAR into the FOO-schema and granted execute rights un UT_BAR to UTPLSQL....
Juergen Aschenbrenner
jasche@...
Send Email
May 21, 2002
3:58 pm
108
ok, finally I got it run. Another problem I encountered was that I gave the schema where I put the utplsql package in the same name, e.g. 'utplsql'. When I try...
Juergen Aschenbrenner
jasche@...
Send Email
May 23, 2002
2:16 pm
109
... to ... Hmmm, I wish I had a clever solution to this, as I have encountered a related problem. I have a routine which sends out a notification email to...
chrisrimmer1970
Offline Send Email
May 24, 2002
2:49 pm
110
... us his ... threaded ... I am afraid this forum tends not to work. It's more like ORA-03113 errors generator :) I was never be able to use any part of it...
a_tumanov
Offline Send Email
May 28, 2002
2:11 pm
111
Thinking about this problem posed by Albert, I wondered to myself if it was possible to recompile a package into a 'testing' form before the tests are run and...
Chris Rimmer
chrisrimmer1970
Offline Send Email
May 30, 2002
11:53 am
112
I'm not an expert on Java, especially when it comes to using it in stored procs in Oracle. I am interested to know if anyone uses JUnit to test this code. Is...
Chris Rimmer
chrisrimmer1970
Offline Send Email
May 30, 2002
11:53 am
113
If I understood correctly, Chris proposed to write code like that: PROCEDURE My_Proc IS .... /**P ONLY*/ ret_code := My_Function(in_number); /*P ONLY**/ /**T...
a_tumanov
Offline Send Email
Jun 3, 2002
12:54 pm
114
By the way, the Oracle PL/SQL Pipetalk forum (http://pipetalk.revealnet.com/~plsql) performs much-much better since June 1, 2002. I think that utPLSQL forum...
a_tumanov
Offline Send Email
Jun 3, 2002
12:54 pm
115
Hi folks, I would like to inquire about what the better way is to match a given collection against table data: To store the collection in a temporarely created...
Juergen Aschenbrenner
jasche@...
Send Email
Jun 3, 2002
12:54 pm
116
Hello all, Joined yesterday. First post, since my previous first post hasn't appeared! I'm having a look at utPLSQL, but haven't used it in anger yet. (a)...
Colin Wright
colinderekwr...
Offline Send Email
Jun 3, 2002
5:25 pm
117
Great Post! Just what I wanted to say. In a former code generation project, I had implemented a feature like this (Rimmer Method) for test mode, I also had...
david.johnson@...
davidejohnson
Offline Send Email
Jun 3, 2002
8:56 pm
118
Glad to see discussion on this very important topic. The idea of synonyms is interesting, but functions tend to call mostly functions of own schema. I can...
a_tumanov
Offline Send Email
Jun 5, 2002
1:03 pm
119
Albert, ... The thing to remember is that for non-dynamic code the synonym lookup is only used at _compile_ time, which is why you must recompile the procedure...
Colin Wright
colinderekwr...
Offline Send Email
Jun 5, 2002
3:28 pm
120
I wrote the following snipped to illustrate my problem. It must have something to do with a NTHVAL component. Maybe someone can give me a hint what it is....
Juergen Aschenbrenner
jasche@...
Send Email
Jun 5, 2002
5:39 pm
121
I am thinking of giving a presentation at this year's UKOUG in December on utPLSQL to raise the profile of the project (and maybe raise my own profile too...
chrisrimmer1970
Offline Send Email
Jun 11, 2002
12:17 pm
122
... Date: Tue, 11 Jun 2002 12:33:50 -0500 From: Larry Winkler <lawrence.winkler@...> To: Chris Rimmer <chris@...> Subject: Re:...
Chris Rimmer
chrisrimmer1970
Offline Send Email
Jun 12, 2002
11:33 am
123
Problem: in ut_setup method, I'd like to insert some test data. But some of the tables are under another schema. To enable the inserts, I should give grants to...
a_tumanov
Offline Send Email
Jun 17, 2002
11:49 am
124
Create a package to create the data for the other schema, and place it in the other schema. Call it from your ut_setup. It should execute with owner privilege,...
Bayley, Alistair
abayley2
Offline Send Email
Jun 17, 2002
2:56 pm
125
... Date: Mon, 17 Jun 2002 15:25:31 -0500 From: Larry Winkler <lawrence.winkler@...> To: Chris Rimmer <chris@...> Subject: Re:...
Chris Rimmer
chrisrimmer1970
Offline Send Email
Jun 19, 2002
2:21 pm
126
Hi everybody, we're considering the use of utPLSQL to include unit testing in the ETL system we're developing with Oracle Warehouse Builder. Has anybody tried...
cereal_con_fibra
cereal_con_f...
Offline Send Email
Jun 21, 2002
12:32 pm
127
Hi Folks, I tried to install the utplsql on a 7.3.4.0.0 oracle data base. The installation script had proplems with the *utreceq* package as it couldn't handle...
Juergen Aschenbrenner
jasche@...
Send Email
Aug 6, 2002
4:12 pm
128
I have just uploaded the new version to SourceForge. (http://sourceforge.net/project/showfiles.php?group_id=6633) The changes are: utRecEq package spec fixed...
chrisrimmer1970
Offline Send Email
Aug 6, 2002
8:57 pm
Messages 99 - 128 of 177   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help