Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nsmML-0006AJ-A1 for pgsql-admin@arkaria.postgresql.org; Sun, 22 May 2022 14:15:05 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1nsmLM-0007pa-65 for pgsql-admin@arkaria.postgresql.org; Sun, 22 May 2022 14:14:04 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nsmLL-0007pR-PZ for pgsql-admin@lists.postgresql.org; Sun, 22 May 2022 14:14:03 +0000 Received: from mail-ed1-x52d.google.com ([2a00:1450:4864:20::52d]) by magus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.92) (envelope-from ) id 1nsmLJ-00031a-7k for pgsql-admin@lists.postgresql.org; Sun, 22 May 2022 14:14:03 +0000 Received: by mail-ed1-x52d.google.com with SMTP id en5so16135288edb.1 for ; Sun, 22 May 2022 07:14:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=Oxqh/Ngsg85yGaFW8nf7vvvsS/btaQXs87mWdRGQeDc=; b=N5knHxRbPU2PX58n4TVnUrM3oYzbNAurJYiNO3YcqcHzrPH4pxvgx6a3lZJo3X+6jw TO2t85sPKd2NpWuJABnA4KhVMG/+KRN4GVt9Pj44Uui2hOA/2DuDvaeQ9j/VvX1JlBoO Rfs4e5FqxpSByT0SkQWOakdTd4H4meTmcSet9hdV06GGcgJlX2Sgz880SAYfROujSgjy 7zN+0SoEkZqpsN0tq8XieUG+HG+oeBf1Lf6Jev8Xf7HKHgw44Zu1GNlLmlUI8OukYSpI OOvEELM1Z/WH9OZelkzseLFdfijWMAql0a6SgpYYasb6OJTWXNJYYT7senbSgWwLYSOA 9nyQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=Oxqh/Ngsg85yGaFW8nf7vvvsS/btaQXs87mWdRGQeDc=; b=pctmSqmM7GR+3jk7yn4ReJR4YtQwqHVI84teIlvq69K9GoEXiYapv4QQatXjVEoUFD qw7VpXILIPw/ijGSeRNj7jNbrghM3rsD5wM7Kxq/8sFjO9I3zMvKJX09czCzz2KZ23Ur YQ5uSyj7j7l1aBFr7G5yHeYUZSYTmc8OI0I+jXseio6/ddV0LKqCEctzcydlP5HnKEc/ uk6hEmfiGRFPOQJNcrt9Yb+WihdMiqeVEBehEc4GOBbfPWSMdVM8kwRVwUgu3uOuDf2n A6G8nqffvkjdFuXzzVyw12iBaCHrLdU1XS9Rx1Zrc+EnDCFB4Am4YCZl0HPMSkC4gv1N af6Q== X-Gm-Message-State: AOAM530AlWUqDUBinU1PZwvmZ7NdlKe+LNfoO7Qsuum6EUuMk03LULW2 RI2sW7+k+x74zimfyKYVV29JR/dG2oEe+fjgsx0GoaZ/ X-Google-Smtp-Source: ABdhPJxOv3faPPQ+Yt/2ATl6DwxMG81BxHv+aEj9E8PUQ0N9Oz89j3rlG5wZwWwjJMvkPyTMJK4+1Equ6Otuh9l9Bw4= X-Received: by 2002:a50:d7cc:0:b0:42b:4d05:ac4a with SMTP id m12-20020a50d7cc000000b0042b4d05ac4amr6038702edj.294.1653228839442; Sun, 22 May 2022 07:13:59 -0700 (PDT) MIME-Version: 1.0 References: <50d43222-8249-f7a8-ecca-7c696c4f5539@jakobs.com> In-Reply-To: From: Devendra Postgres Date: Sun, 22 May 2022 19:43:47 +0530 Message-ID: Subject: Re:Need doc for PostgreSQL RDS External Table To: pgsql-admin@lists.postgresql.org Content-Type: multipart/alternative; boundary="000000000000b51b8a05df9a5591" List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --000000000000b51b8a05df9a5591 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Good Morning & Good Evening All, As Migration, I need to convert one table from Oracle (Source) to Postgres(Target) The Oracle Table is created as below: The oracle table is external table. What is external table : We will keep files(CSV/ flat files) in drive, we will create a one physical table in oracle and when we select * from table, The oracle external table will go to the CSV/Flat file and it will pull the data from the table and will share results to the user. FYI : it won=E2=80=99t store any physical data in the oracle database. Requirement : we need similar kind of external concept in POSTGRESQL RDS. The data ( CSV/Flat) is storing in S3 Bucket. Could some one share doc/ URL . Thxs, Deva --000000000000b51b8a05df9a5591 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Good Morning & Good Evening All,

=C2=A0As Migration, I need to convert one ta= ble from Oracle (Source) to Postgres(Target)
The Ora= cle Table is created as below:=C2=A0

The oracle table is external table. What is external table : W= e will keep =C2=A0files(CSV/ flat files) in drive, we will create a one phy= sical table in oracle and when we select * from table, The oracle external = table will go to the CSV/Flat file and it will pull the data from=C2=A0the = table and will share results to the user.=C2=A0

=
FYI : it won=E2=80=99t store any physical data in t= he oracle database.

Requ= irement : we need similar kind of external concept in POSTGRESQL RDS. The d= ata ( CSV/Flat) is storing in S3 Bucket.

<= div dir=3D"auto">Could some one share doc/ URL .
Thxs,
Deva

--000000000000b51b8a05df9a5591--