sql – 数据库:流水线函数

前端之家收集整理的这篇文章主要介绍了sql – 数据库:流水线函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是管道功能概念的新手.我有一些问题

数据库的角度来看:

>究竟什么是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函数的一大优点是,您的函数可以逐个返回行,而不是在返回之前在整个内存中构建整个结果集.

上面给出了明显的优化 – 从本来可以返回大结果集的东西中节省了内存.

一个相当有趣的例子using pipelined functions is here

看起来好用的是ETL(提取/转换/加载) – for example see here

猜你在找的MsSQL相关文章