我是管道功能概念的新手.我有一些问题
@H_502_12@解决方法@H_301_13@
从数据库的角度来看:
>究竟什么是Pipeline功能?
>使用管道功能有什么好处?
>使用管道功能解决了哪些挑战?
>使用Pipeline功能的任何优化优势是什么?
谢谢.
引用fom“Ask Tom Oracle”:
pipelined functions are simply “code you can pretend is a database table”
pipelined functions give you the (amazing to me) ability to
select * from PLsql_FUNCTION;
anytime you think you can use it — to select * from a function,instead of a table,it
might be “useful”.
就优点而言:使用Pipeline函数的一大优点是,您的函数可以逐个返回行,而不是在返回之前在整个内存中构建整个结果集.
上面给出了明显的优化 – 从本来可以返回大结果集的东西中节省了内存.
一个相当有趣的例子@L_301_0@
看起来好用的是ETL(提取/转换/加载) – for example see here