[질문] oracle pro*c에서 2개서버를 동시에 접속해서 DML구문을

andrea0705의 이미지

안녕하십니까?
A서버가 B서버에서 특정테이블을 select해서 C서버에 Insert하는 구문을
Pro*c로 구현하는데 잘 안되네요... 고수님들의 도움이 필요합니다. ㅠ ㅠ

    strcpy( dbname1.arr, "tlsdba");
    strcpy( passwd1.arr, "dopctls");
    strcpy( db_alias1.arr, "sntls2");

    dbname1.len = strlen( dbname1.arr );
    passwd1.len = strlen( passwd1.arr );
    db_alias1.len = strlen( db_alias1.arr );

    EXEC SQL DECLARE SNTLS_DB DATABASE;
    EXEC SQL CONNECT :dbname1 IDENTIFIED BY :passwd1 AT SNTLS_DB USING :db_alias1;

    strcpy( dbname2.arr, "tlsdba");
    strcpy( passwd2.arr, "dopctls");
    strcpy( db_alias2.arr, "TORA");

    dbname2.len = strlen( dbname2.arr );
    passwd2.len = strlen( passwd2.arr );
    db_alias2.len = strlen( db_alias2.arr );

    EXEC SQL DECLARE ABS2_DB DATABASE;
    EXEC SQL CONNECT :dbname2 IDENTIFIED BY :passwd2 AT ABS2_DB USING :db_alias2;

===========================================

   EXEC SQL AT SNTLS_DB INSERT INTO RECEIPTALL (LOAD_NO)
                        VALUES (:f_load_year);

   EXEC SQL AT ABS2_DB INSERT INTO RECEIPTALL (LOAD_NO)
                        VALUES (:f_load_year);

   EXEC SQL SNTLS_DB COMMIT RELEASE;
   EXEC SQL ABS2_DB COMMIT RELEASE;

동시에 접속한 상태에서 Insert를 했을때 insert가 안 되네요.
도와주세요... 별다르게 틀린게 없는데..

배성기의 이미지

Table Name의 원형을 모두 사용해 보시죠...

" hostname.dbmsname.tablename "

ex) insert into a_host.a_dbms.a_table ( ....) values .....

성공 하시길....

그리고
oracle은 두개의 서버에 login하지 않고도 가능한걸로 압니다..
그것은 oracle 환경정보에 대상 서버 이름을 지정하면 쉽게 연결 될겁니다.
그렇게 되면 이런 문장이 가능합니다

select a.col, b.col ... from aalias.atable a, balias.btable b
where .....

이렇게 두개서 dbms or host의 두 table도 join이 가능하게 될 수
있습니다. 이때 login은 자신에게서 유리한 한 서버만 connect하면 됩니다.
환경 설정을 다시 확인 하심이.....

oracle은 /etc/oratab이라고 있고,
informix는 $INFOMIXDIR/etc/sqlhost라고 있는걸로 압니다.
dba에게 확인 해보세요...

albertyun의 이미지

pro*c 에서 SQL 문을 수행 한후에는 항상.. sqlca.sqlcode 값을 체킹을 해야 어디서 에러가나는지 알수 있습니다..

에러 체크를 해보세용...

Think..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.