0193852201 "193"是铁通的IP接入码,说明这电话是外地的铁通IP打过来的.
+1951101 中国移动(195)传输的从美国(1)来的经经京(10)第一(1)国际局的来电.
+1931201 中国联通(193)传输的从美国(1)来的经广州(20)第一(1)国际局的来电.
0190852202 中国电信(190)传输的从香港(852)来的经广州(20)第二(2)国际局的来电.
2010/01/09 07:05 | by 孤城浪子 ]
Oracle/PLSQL: Execute a function that is defined in a package
Question: How can I execute a function that is defined in a package using Oracle/PLSQL?
Answer: To execute a function that is defined in a package, you'll have to prefix the function name with the package name.
package_name.function_name (parameter1, parameter2, ... parameter_n)
You can execute a function a few different ways.
Solution #1
First, we'll take a look at how to execute a function using a test block. Below we've declared a variable called result that is a number. We've passed in a value of 15000 into the function and the result of the function will be returned to the variable called result.
declare
result number;
begin
-- Call the function
result := package_name.function_name (15000);
end;
Solution #2
We can also execute a function by running an SQL statement. For example:
select package_name.function_name (15000)
from dual;
2009/12/30 04:29 | by 孤城浪子 ]
使用方法:
输入用户、密码、tnsname -> 连接9i, 10g、11g数据库 -> 选择schema、代码类型 -> 选择代码->Unwrap
或者
直接将加密过的代码输入到wrap text编辑框中(仅10g、11g)->Unwrap
下载文件 (已下载 1851 次)来源: http://www.hellodba.com/Download/Unwrap_PLSQL.html
2009/12/29 21:48 | by 孤城浪子 ]
下载文件 (已下载 991 次)
2009/10/18 19:11 | by 孤城浪子 ]
- AVI, divx, xvid, MPEG-4
- rm, rmvb
- ASF, WMV, WMA
- AC3
下载文件 (已下载 1017 次)




