@@ -184,160 +184,28 @@ Grant succeeded.
184184Grant succeeded.
185185
186186
187- Error starting at line : 6 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
188- In command -
189- create table wt_dbout_profiles
190- (test_run_id number(38) constraint wt_dbout_profiles_nn1 not null
191- ,line number(6) constraint wt_dbout_profiles_nn2 not null
192- ,status varchar2(4) constraint wt_dbout_profiles_nn3 not null
193- ,total_occur number(9) constraint wt_dbout_profiles_nn4 not null
194- ,total_time number(9) constraint wt_dbout_profiles_nn5 not null
195- ,min_time number(9) constraint wt_dbout_profiles_nn6 not null
196- ,max_time number(9) constraint wt_dbout_profiles_nn7 not null
197- ,text varchar2(4000) constraint wt_dbout_profiles_nn8 not null
198- ,not_exec_text varchar2(4000)
199- ,constraint wt_dbout_profiles_pk primary key (test_run_id, line)
200- ,constraint wt_dbout_profiles_fk1 foreign key (test_run_id)
201- references wt_test_runs (id)
202- ,constraint wt_dbout_profiles_fk2 foreign key (not_exec_text)
203- references wt_not_executable (text) disable
204- ,constraint wt_dbout_profiles_ck1 check (status in ('EXEC','NOTX','EXCL','ANNO','UNKN'))
205- ) pctfree 0
206- Error report -
207- ORA-02444: Cannot resolve referenced object in referential constraints
208- 02444. 00000 - "Cannot resolve referenced object in referential constraints"
209- *Cause: attempted to define foreign key referencing an object which
210- cannot be resolved to a base table reference
211- *Action: referential constraints can only be defined on objects which
212- can be resolve to base table reference
213-
214- Error starting at line : 24 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
215- In command -
216- comment on table wt_dbout_profiles is 'PL/SQL Profiler data for Database Object Under Test (DBOUT).'
217- Error report -
218- ORA-01775: looping chain of synonyms
219- 01775. 00000 - "looping chain of synonyms"
220- *Cause:
221- *Action:
187+ Table WT_DBOUT_PROFILES created.
222188
223- Error starting at line : 25 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
224- In command -
225- comment on column wt_dbout_profiles.test_run_id is 'Foreign Key for the Test Run, Primary Key part 1.'
226- Error report -
227- ORA-01775: looping chain of synonyms
228- 01775. 00000 - "looping chain of synonyms"
229- *Cause:
230- *Action:
231189
232- Error starting at line : 26 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
233- In command -
234- comment on column wt_dbout_profiles.line is 'Source code line number, Primary Key part 2.'
235- Error report -
236- ORA-01775: looping chain of synonyms
237- 01775. 00000 - "looping chain of synonyms"
238- *Cause:
239- *Action:
190+ Comment created.
240191
241- Error starting at line : 27 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
242- In command -
243- comment on column wt_dbout_profiles.status is 'Executed/NotExecuted/Excluded/Annotated/Unknown Status from the Profiler'
244- Error report -
245- ORA-01775: looping chain of synonyms
246- 01775. 00000 - "looping chain of synonyms"
247- *Cause:
248- *Action:
249192
250- Error starting at line : 28 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
251- In command -
252- comment on column wt_dbout_profiles.total_occur is 'Number of times this line was executed.'
253- Error report -
254- ORA-01775: looping chain of synonyms
255- 01775. 00000 - "looping chain of synonyms"
256- *Cause:
257- *Action:
193+ Comment created.
258194
259- Error starting at line : 29 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
260- In command -
261- comment on column wt_dbout_profiles.total_time is 'Total time spent executing this line.'
262- Error report -
263- ORA-01775: looping chain of synonyms
264- 01775. 00000 - "looping chain of synonyms"
265- *Cause:
266- *Action:
267195
268- Error starting at line : 30 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
269- In command -
270- comment on column wt_dbout_profiles.min_time is 'Minimum execution time for this line.'
271- Error report -
272- ORA-01775: looping chain of synonyms
273- 01775. 00000 - "looping chain of synonyms"
274- *Cause:
275- *Action:
196+ Comment created.
276197
277- Error starting at line : 31 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
278- In command -
279- comment on column wt_dbout_profiles.max_time is 'Maximum execution time for this line.'
280- Error report -
281- ORA-01775: looping chain of synonyms
282- 01775. 00000 - "looping chain of synonyms"
283- *Cause:
284- *Action:
285198
286- Error starting at line : 32 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
287- In command -
288- comment on column wt_dbout_profiles.text is 'Source code text for this line number.'
289- Error report -
290- ORA-01775: looping chain of synonyms
291- 01775. 00000 - "looping chain of synonyms"
292- *Cause:
293- *Action:
199+ Comment created.
294200
295- Error starting at line : 33 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
296- In command -
297- comment on column wt_dbout_profiles.not_exec_text is 'One of the matching values from TEXT.WT_NOT_EXECUTABLE'
298- Error report -
299- ORA-01775: looping chain of synonyms
300- 01775. 00000 - "looping chain of synonyms"
301- *Cause:
302- *Action:
303201
304- Error starting at line : 35 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
305- In command -
306- grant select on wt_dbout_profiles to public
307- Error report -
308- ORA-01775: looping chain of synonyms
309- 01775. 00000 - "looping chain of synonyms"
310- *Cause:
311- *Action:
202+ Comment created.
312203
313- Error starting at line : 36 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
314- In command -
315- grant insert on wt_dbout_profiles to public
316- Error report -
317- ORA-01775: looping chain of synonyms
318- 01775. 00000 - "looping chain of synonyms"
319- *Cause:
320- *Action:
321204
322- Error starting at line : 37 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
323- In command -
324- grant update on wt_dbout_profiles to public
325- Error report -
326- ORA-01775: looping chain of synonyms
327- 01775. 00000 - "looping chain of synonyms"
328- *Cause:
329- *Action:
205+ Comment created.
330206
331- Error starting at line : 38 File @ C:\Users\Duane\Documents\GitHub\wtPLSQL\src\core\wt_dbout_profiles.tab
332- In command -
333- grant delete on wt_dbout_profiles to public
334- Error report -
335- ORA-01775: looping chain of synonyms
336- 01775. 00000 - "looping chain of synonyms"
337- *Cause:
338- *Action:
339207
340- Table WT_NOT_EXECUTABLE created.
208+ Comment created.
341209
342210
343211Comment created.
@@ -346,13 +214,16 @@ Comment created.
346214Comment created.
347215
348216
349- Comment created .
217+ Grant succeeded .
350218
351219
352220Grant succeeded.
353221
354222
355- 1 row inserted.
223+ Grant succeeded.
224+
225+
226+ Grant succeeded.
356227
357228
358229Table WT_TEST_DATA created.
@@ -436,4 +307,3 @@ Errors: check compiler log
436307
437308Package Body WT_TEXT_REPORT compiled
438309
439- Errors: check compiler log
0 commit comments