oracle tips
===========================================================
Calling Export from Pl/sql using C external proc
===========================================================
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:1993409963502

Sudee -- Thanks for the question regarding "Calling Export from Pl/sql using C external proc.", version 8.1.6
originally submitted on 16-Nov-2001 20:55 Eastern US time, last updated 27-Apr-2005 9:31

You Asked
Hi Tom,

Is there anything wrong with these steps,
the exp does not create a .dmp file.

Thanks


#include <stdio.h>
#include <stdlib.h>
#include <string.h>

__declspec(dllexport) void sh(char *);

void sh( char *cmd )
{
int num;

num = system(cmd);
}


CREATE LIBRARY shell_lib is 'C:oracleextprocshell.dll';


create or replace procedure shell (
cmd IN char)
as external
name "sh"
library shell_lib
language C
parameters (
cmd string);

exec shell('C:oracleora81binexp userid=system/manager
file=C:oracleextproctest.dmp full=y rows=N');
and we said...
Ok, this is easily solved.  What I'll do however is show you the steps I went 
thru to diagnose this.

Step 1, after building the example, I tested it with something "non-oracle" --
to eliminate that from the mix. I have a program "touch.exe" which when
executed simply updates the timestamp on a file in the OS and if the file does
not exist, it creates hence.

Hence I ran "exec shell( c:bintouch c:temptest.dat" );"

Sure enough, the file test.dat appeared -- proving the extproc itself functions.

Then I tried export -- sure enough, that DID NOT work.

Step 2, lets capture the output. In order to diagnose this (and in order to be
able to verify the export actually WORKED) we need to capture the output. Using
SYSTEM, the easiest way is:


tkyte@TKYTE816> host erase tempexp.log
tkyte@TKYTE816> begin
2 shell( 'c:oraclebinexp userid=scott/tiger ' ||
3 ' file=c:temptest.dmp tables=emp 2> tempexp.log' );
4 end;
5 /

PL/SQL procedure successfully completed.


that would not only run our command but it would also redirect stderr to a file
we can look at. When I ran that, I saw clearly what the issue was:


tkyte@TKYTE816> host type tempexp.log

Export: Release 8.1.6.0.0 - Production on Sat Nov 17 13:02:35 2001

(c) Copyright 1999 Oracle Corporation. All rights reserved.


EXP-00056: ORACLE error 12560 encountered
ORA-12560: TNS:protocol adapter error
EXP-00000: Export terminated unsuccessfully

So, it is simply not able to connect (it in fact was running exp -- you just had
no way to see the output from exp and now you do). So, once we have that -- we
can go the next step. Well, I would really like to see the environment cause
12560 is almost always an environment issue. At this point, I stop running exp
and just run SET to see whats the environment looks like:

tkyte@TKYTE816> host erase tempexp.log

tkyte@TKYTE816>
tkyte@TKYTE816> begin
2 shell( 'command /c set > tempexp.log' );
3 end;
4 /

PL/SQL procedure successfully completed.

tkyte@TKYTE816> host type tempexp.log
COMSPEC=C:WINNTSYSTEM32COMMAND.COM
ORACLE_SID=extproc

ALLUSERSPROFILE=C:DOCUME~1ALLUSE~1
COMMONPROGRAMFILES=C:PROGRA~1COMMON~1
COMPUTERNAME=TKYTE-DELL
JSERV=C:oracle9i/Apache/Jserv/conf
NUMBER_OF_PROCESSORS=1
OLAP_HOME=C:oracle9iolap
OS=Windows_NT
OS2LIBPATH=C:WINNTsystem32os2dll;
PATH=C:oraclebin;C:oracle9ibin;C:orantbin;C:oracle9i/bin;C:oracle9iApach
ePerl
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 6 Model 8 Stepping 3, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=0803
PROGRAMFILES=C:PROGRA~1
PROMPT=$P$G
SYSTEMDRIVE=C:
SYSTEMROOT=C:WINNT
TEMP=C:WINNTTEMP
TMP=C:WINNTTEMP
USERPROFILE=C:DOCUME~1DEFAUL~1
WV_GATEWAY_CFG=C:oracle9iApachemodplsqlcfgwdbsvr.app

Well, there is the problem in this case -- we are using the EXTPROC service, so
the ORACLE_SID is in fact "extproc".

At this point, we have a couple of choices, two of which I have below - one we
can use Net8:

tkyte@TKYTE816> host erase tempexp.log

tkyte@TKYTE816>
tkyte@TKYTE816> begin
2 shell( 'c:oraclebinexp userid=scott/tiger@tkyte816 ' ||
3 ' file=c:temptest.dmp tables=emp 2> tempexp.log' );
4 end;
5 /

PL/SQL procedure successfully completed.

tkyte@TKYTE816> host type tempexp.log

Export: Release 8.1.6.0.0 - Production on Sat Nov 17 13:05:36 2001

(c) Copyright 1999 Oracle Corporation. All rights reserved.


Connected to: Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
Export done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set

About to export specified tables via Conventional Path ...
. . exporting table EMP 14 rows exported
Export terminated successfully without warnings.



The other is to run more than one command:

tkyte@TKYTE816> host erase tempexp.log

tkyte@TKYTE816>
tkyte@TKYTE816> begin
2 shell( 'set ORACLE_SID=tkyte816 && ' ||
3 'c:oraclebinexp
userid=scott/tiger@tkyte816 ' ||
4 ' file=c:temptest.dmp tables=emp 2> tempexp.log' );
5 end;
6 /

PL/SQL procedure successfully completed.

tkyte@TKYTE816> host type tempexp.log

Export: Release 8.1.6.0.0 - Production on Sat Nov 17 13:08:45 2001

(c) Copyright 1999 Oracle Corporation. All rights reserved.


Connected to: Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
Export done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set

About to export specified tables via Conventional Path ...
. . exporting table EMP 14 rows exported
Export terminated successfully without warnings.



And there you go (you can get the ORACLE_SID you need from v$instance:

tkyte@TKYTE816> select instance_name from v$instance;

INSTANCE_NAME
----------------
tkyte816

if you would like to make this generic.


Hopefully, this will show you how to debug these sorts of issues in the future.
you should note that you should use UTL_FILE or a bfile to open, read and verify
the success of your command! You could use dbms_lob.loadfromfile as well to get
it into a database table for future reference.


jametong 发表于:2005.04.27 23:26 ::分类: ( oracle refs ) ::阅读:(37200次) :: 评论 (650)
download album [回复]

Hello! Thank you, very good blog, I'll be back! [URL=http://www.musicdownloadsru.net/a.htm]download album[/URL]

Dotyw 评论于: 2006.09.27 01:51
mp3 download file [回复]

What's news?! Have you put it for now? [URL=http://www.whitemp3.com/m.htm]mp3 download file[/URL]

Dotyyw 评论于: 2006.09.29 12:50
mp3 songs [回复]

Hello! Thank you, very good, I'll be back! mp3 songs

An_Goobn 评论于: 2006.09.30 11:01
download mp3 songs [回复]

What's news?! Have you put it for now? download mp3 songs

Kimeeln 评论于: 2006.10.01 09:10
mp3 song download [回复]

I love this info! I will come back! [URL=http://www.mp3extramusic.com/z.htm] mp3 song download [/URL]

Rimmogen 评论于: 2006.10.02 09:45
download mp3s [回复]

Brilliance!!! Have a new opportunities! download mp3s

Loveek 评论于: 2006.10.03 12:43
mp3 download program [回复]

Useful resource!! Really individ have made it!!! [URL=http://www.mp3extramusic.com/s.htm] mp3 download program [/URL]

Dotyyw 评论于: 2006.10.03 12:43
new mp3 [回复]

Useful resource!! Really individ have made it!!! new mp3

DJ.Joony 评论于: 2006.10.04 16:49
download mp3 songs [回复]

Useful resource!! Really individ have made it!!! [URL=http://www.mp3extramusic.com/q.htm] download mp3 songs [/URL]

Peeros 评论于: 2006.10.07 01:30
re: Calling Export from Pl/sql using C external proc [回复]

[url=http://phenterminech.blogshot.nl]cheap phentermine free shipping[/url]

John 评论于: 2006.10.07 22:38
mp3 charts [回复]

I like it! Really interesting informaition! mp3 charts

Loveek 评论于: 2006.10.08 05:22
mp3 charts [回复]

I like it! Really interesting informaition! mp3 charts

Loveek 评论于: 2006.10.08 05:22
download [回复]

Thank you!!! I'm impressed! Really useful! download

Kimeeln 评论于: 2006.10.08 05:23
download [回复]

Thank you!!! I'm impressed! Really useful! download

Kimeeln 评论于: 2006.10.08 05:23
re: Calling Export from Pl/sql using C external proc [回复]

phentermine diet pill

Thomas 评论于: 2006.10.08 19:06
re: Calling Export from Pl/sql using C external proc [回复]

ambien best ambien

ambien 评论于: 2006.10.09 01:57
download album [回复]

Brilliance!!! Have a new opportunities! [URL=http://www.musicdownloadsru.net/a.htm]download album[/URL]

Kimeeln 评论于: 2006.10.11 13:07
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Redfox 评论于: 2006.10.11 18:47
mp3 file [回复]

Useful resource!! Really individ have made it!!! mp3 file

Dotyyw 评论于: 2006.10.13 15:13
download mp3 music [回复]

I love this info! I will come back! download mp3 music

Dotyyw 评论于: 2006.10.13 15:14
mp3 music album [回复]

Nice, thank you! [URL=http://www.whitemp3.com/q.htm]mp3 music album[/URL]

Dotyyw 评论于: 2006.10.13 15:14
mp3 music album [回复]

Nice, thank you! [URL=http://www.whitemp3.com/q.htm]mp3 music album[/URL]

Dotyyw 评论于: 2006.10.13 15:14
mp3 music album [回复]

Nice, thank you! [URL=http://www.whitemp3.com/q.htm]mp3 music album[/URL]

Dotyyw 评论于: 2006.10.13 15:15
re: Calling Export from Pl/sql using C external proc [回复]

The best PHONE CARD phone card
[url=www.crazycard.pushline.com]phone card[/url]

crazycard12@mail.com 评论于: 2006.10.15 21:40
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.17 15:45
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

John 评论于: 2006.10.17 15:45
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.17 15:45
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.17 15:45
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.17 15:45
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

John 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.18 20:14
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.18 20:15
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Green 评论于: 2006.10.18 20:15
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.18 20:15
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.20 01:00
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.20 01:00
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.20 01:00
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.20 01:00
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.20 01:01
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.20 01:02
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.20 01:03
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.20 22:53
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.20 22:53
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.20 22:53
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.20 22:54
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.20 22:54
re: Calling Export from Pl/sql using C external proc [回复]

cheap
order cialis

order online

peter kiesewetter 评论于: 2006.10.21 06:53
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.21 21:47
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

John 评论于: 2006.10.21 21:47
free online games [回复]

free online games

Mastermind 评论于: 2006.10.21 23:24
red wing boots [回复]

red wing boots

Wernesty 评论于: 2006.10.22 07:02
evening dresses [回复]

evening dresses

Klist 评论于: 2006.10.22 11:47
payless shoes [回复]

payless shoes

Nornet 评论于: 2006.10.22 18:09
hiking boots [回复]

hiking boots

Tran 评论于: 2006.10.22 23:21
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.23 01:05
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.23 01:05
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.23 01:05
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.23 01:05
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

John 评论于: 2006.10.23 01:06
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.23 01:07
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.23 01:07
pageant dresses [回复]

pageant dresses

Klist 评论于: 2006.10.23 18:23
download mp3 album [回复]

Brilliance!!! Have a new opportunities! [URL=http://www.whitemp3.com/l.htm]download mp3 album[/URL]

DJ.Joony 评论于: 2006.10.23 23:51
ski boot bag [回复]

ski boot bag

Tretchet 评论于: 2006.10.24 00:15
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.24 01:47
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.24 01:47
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.24 01:47
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.24 01:47
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.24 01:48
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.24 01:48
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.24 01:49
cowboy hat [回复]

cowboy hat

Thompson 评论于: 2006.10.24 07:43
lane furniture [回复]

lane furniture

Bigmachine 评论于: 2006.10.24 14:12
wolverine boots [回复]

wolverine boots

Wernesty 评论于: 2006.10.24 19:19
re: Calling Export from Pl/sql using C external proc [回复]

Very good guestbook!

Alex 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

John 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

It's very good guestbook!

Thomas 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.25 00:16
re: Calling Export from Pl/sql using C external proc [回复]

Thank you!

Barbara 评论于: 2006.10.25 00:17
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.25 00:18
ariat boots [回复]

ariat boots

Tretchet 评论于: 2006.10.25 00:25
sports betting [回复]

sports betting

Trimcher 评论于: 2006.10.25 09:31
boot covers [回复]

boot covers

Tretchet 评论于: 2006.10.25 14:42
ugg boots [回复]

ugg boots

Klist 评论于: 2006.10.25 18:56
bunn coffee makers [回复]

bunn coffee makers

Prestin 评论于: 2006.10.26 11:32
discount cigarettes [回复]

discount cigarettes

Prestin 评论于: 2006.10.26 19:47
nike shoes [回复]

nike shoes

Tran 评论于: 2006.10.27 02:22
cuban cigars [回复]

cuban cigars

Thompson 评论于: 2006.10.27 17:41
crocs shoes [回复]

crocs shoes

Moler 评论于: 2006.10.28 03:39

buy phentermine

herxr 评论于: 2006.10.28 12:47
justin boots [回复]

justin boots

Wernesty 评论于: 2006.10.28 12:48
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Frank 评论于: 2006.10.28 17:00
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.28 17:01
pirate hats [回复]

pirate hats

Bigmachine 评论于: 2006.10.28 19:16

buy phentermine

herjj 评论于: 2006.10.28 19:25

buy phentermine

herjj 评论于: 2006.10.28 19:26
baseball caps [回复]

baseball caps

Ghost 评论于: 2006.10.29 01:25
formal dresses [回复]

formal dresses

Moler 评论于: 2006.10.29 07:30
chimney caps [回复]

chimney caps

Wernesty 评论于: 2006.10.29 13:05
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design!Thanks.

Jerry 评论于: 2006.10.29 17:43
lsu ringtones [回复]

lsu ringtones

Thompson 评论于: 2006.10.29 19:44
christmas cards [回复]

christmas cards

Moler 评论于: 2006.10.30 01:38
football picks [回复]

football picks

Prestin 评论于: 2006.10.30 13:30
christmas costumes [回复]

christmas costumes

Ghost 评论于: 2006.10.31 03:05
sexy lingerie [回复]

sexy lingerie

Wernesty 评论于: 2006.10.31 08:55
mp3 singer [回复]

I like it! Really interesting informaition! mp3 singer

Vaniil 评论于: 2006.10.31 11:02
mp3 albums and music [回复]

I love this info! I will come back! [URL=http://www.whitemp3.com/t.htm]mp3 albums and music[/URL]

Loveek 评论于: 2006.10.31 11:02
sedu hairstyles [回复]

sedu hairstyles

Thompson 评论于: 2006.10.31 15:02
bridal shower games [回复]

bridal shower games

Nornet 评论于: 2006.10.31 20:40
nfl betting line [回复]

nfl betting line

Klist 评论于: 2006.11.01 02:49
sildenafil citrate [回复]

sildenafil citrate

Tran 评论于: 2006.11.01 08:43
tracfone ringtones [回复]

tracfone ringtones

Dreamwatcher 评论于: 2006.11.01 15:18
christmas stockings [回复]

christmas stockings

Nornet 评论于: 2006.11.01 20:50
ugg boots [回复]

ugg boots

Wernesty 评论于: 2006.11.02 20:25
razor scream machine [回复]

razor scream machine

Bigmachine 评论于: 2006.11.03 10:40
christmas shoes [回复]

christmas shoes

Smith 评论于: 2006.11.03 15:11
prom shoes [回复]

prom shoes

Wernesty 评论于: 2006.11.03 20:28
corset prom dresses [回复]

corset prom dresses

Smith 评论于: 2006.11.04 05:10
harley davidson boots [回复]

harley davidson boots

Moler 评论于: 2006.11.04 15:04
chippewa boots [回复]

chippewa boots

Tretchet 评论于: 2006.11.04 22:29
re: Calling Export from Pl/sql using C external proc [回复]

uktzkgrir

zgfqmxrp 评论于: 2006.11.05 02:17
re: Calling Export from Pl/sql using C external proc [回复]

uktzkgrir

zgfqmxrp 评论于: 2006.11.05 02:18
little black dress [回复]

little black dress

Tretchet 评论于: 2006.11.05 04:28
homecoming dresses [回复]

homecoming dresses

Nornet 评论于: 2006.11.05 10:14
christmas gifts [回复]

christmas gifts

Smith 评论于: 2006.11.06 05:33
truck caps [回复]

truck caps

Thompson 评论于: 2006.11.06 11:42
hats caps [回复]

hats caps

Klist 评论于: 2006.11.06 16:37
hub caps [回复]

hub caps

Wernesty 评论于: 2006.11.06 22:14
american general finance [回复]

american general finance

Moler 评论于: 2006.11.07 16:03
re: Calling Export from Pl/sql using C external proc [回复]

wtcmlaar

oldhanwrz 评论于: 2006.11.08 01:39
re: Calling Export from Pl/sql using C external proc [回复]

wtcmlaar

oldhanwrz 评论于: 2006.11.08 01:39
re: Calling Export from Pl/sql using C external proc [回复]

wtcmlaar

oldhanwrz 评论于: 2006.11.08 01:39
home work business opportunities [回复]

home work business opportunities

Tretchet 评论于: 2006.11.08 10:29
discount cigarettes [回复]

discount cigarettes

Tretchet 评论于: 2006.11.08 21:33
re: Calling Export from Pl/sql using C external proc [回复]

ekklfvv

exzkuomc 评论于: 2006.11.10 01:52
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design! Thanks.

Jerry 评论于: 2006.11.10 02:57
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Thomas 评论于: 2006.11.10 02:57
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Buckley 评论于: 2006.11.10 02:57
re: Calling Export from Pl/sql using C external proc [回复]

Good idea!

River 评论于: 2006.11.10 02:58
re: Calling Export from Pl/sql using C external proc [回复]

Beautiful design! Thanks.

Rebecca 评论于: 2006.11.10 02:58
re: Calling Export from Pl/sql using C external proc [回复]

Good design!

Kaylee 评论于: 2006.11.10 02:58
tattoo gallery [回复]

tattoo gallery

Mastermind 评论于: 2006.11.10 21:48
pizza coupons [回复]

pizza coupons

Trimcher 评论于: 2006.11.11 08:37
hot lesbian sex [回复]

hot lesbian sex

Prestin 评论于: 2006.11.11 11:32
britney divorce [回复]

britney divorce

Tretchet 评论于: 2006.11.11 16:10
vintage clothing [回复]

vintage clothing

Moler 评论于: 2006.11.11 21:08

buy propecia

popbnn 评论于: 2006.11.12 04:21
how to save a life [回复]

how to save a life

Ghost 评论于: 2006.11.12 12:40
re: Calling Export from Pl/sql using C external proc [回复]

nmsoxed

xntuveidt 评论于: 2006.11.13 20:01
paris hilton sex tape [回复]

paris hilton sex tape

Prestin 评论于: 2006.11.14 00:02
durango boots [回复]

durango boots

Nornet 评论于: 2006.11.14 12:41
xmas shopping [回复]

xmas shopping

Prestin 评论于: 2006.11.15 00:13
christmas cards [回复]

christmas cards

Dreamwatcher 评论于: 2006.11.15 06:30
body piercing [回复]

body piercing

Prestin 评论于: 2006.11.15 12:41
xmas cards [回复]

xmas cards

Ghost 评论于: 2006.11.15 18:35
lesbians [回复]

lesbians

Moler 评论于: 2006.11.16 00:39
christmas shoes [回复]

christmas shoes

Klist 评论于: 2006.11.16 06:32
paris hilton naked [回复]

paris hilton naked

Klist 评论于: 2006.11.17 00:14
movado watches [回复]

movado watches

Trimcher 评论于: 2006.11.17 05:58
nixon watches [回复]

nixon watches

Tretchet 评论于: 2006.11.17 18:22
re: Calling Export from Pl/sql using C external proc [回复]

http://badcreditloan2007.blogspot.com

smark 评论于: 2006.11.18 21:10
christmas tree [回复]

christmas tree

Prestin 评论于: 2006.11.19 00:22
christmas tree [回复]

christmas tree

Prestin 评论于: 2006.11.19 00:22
Forex broker [