Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
213 views

Want to Wrap PSList in a Powershell function to use pipeline values

I like PSList, and use the CPU and Elapsed times to indentify processes that need to be killed. I would like to wrap it in a powershell function that returns pipeline values so that I could do ...
2
votes
1answer
917 views

Is using a SELECT inside a pipelined PL/SQL table function allowed?

The docs for pipelined functions say that DML is not allowed when they are used in a SQL statement (typically a SELECT), and in most examples the pipelined functions are used for data generation or ...
0
votes
0answers
53 views

Architecture: Pipelining concepts

Learning architecture and assembly language Can someone please explain in plain english what this is suppose to do? First one: Pipeline register containing source instruction: EX/MEM Opcode of ...
0
votes
2answers
186 views

how to use oracle package to get rid of Global Temp table

I have a sample query like below: INSERT INTO my_gtt_1 (fname, lname) (select fname, lname from users) In my effort to getting rid of temporary tables I created a package: create or replace ...
0
votes
2answers
660 views

PL/SQL - use same pipelined function twice in the same query

I'm trying to use a pipelined function to save on time and reduce redundancy in my queries. The function in question returns data from a reference table based on some input. Records in the main data ...
0
votes
1answer
344 views

Viewing results of a pipelined function in SQL*Plus or Oracle SQL Developer

How can I view the results returned by a pipelined function in Oracle SQL Developer ? I'm invoking the function using a simple select..from dual like select ...