Thread: PostGres Tables in ArcSDE and ArcCatalog.

PostGres Tables in ArcSDE and ArcCatalog.

From
Michael Andrew Babb
Date:
<div class="WordSection1"><p class="MsoNormal">Hi All,<p class="MsoNormal"> <p class="MsoNormal">I am using PostGRES
8.3in conjunction with ESRI’s ArcSDE. ArcSDE allows the storage of spatial data inside of an PostGRES database. One of
theprograms bundled with ESRI’s GIS suite is ArcCatalog. ArcCatalog is a spatial data manager. It is possible to browse
andanalyze the contents of PostGRES databases using ArcCatalog. In my PostGRES database, I have a table called SF30001.
Ican fully interact with the table using PSQL and pgAdmin III. However, I cannot interact with the table at all using
ArcCatalog.Full interactivity needs to happen with ArcCatalog because the majority of the users of the PostGRES
databasewill be using ArcCatalog to access data in the PostGRES database.<p class="MsoNormal"> <p class="MsoNormal">If
Iexecute a make table query along the lines of “select * into SF30001_test from SF30001” I can interact with the table
inArcCatalog just fine.<p class="MsoNormal"> <p class="MsoNormal">I suspect that what I am running into is an ArcSDE
configurationsetting but I am not sure which one. I am not ready to rule out the issue as a PostGRES issue either. I'm
currentlypouring over configuration settings and how-to documents, but I wonder if anybody has any recommendations on
howto gain full interactivity with the original table in ArcCatalog. <p class="MsoNormal"> <p
class="MsoNormal">Thanks,<pclass="MsoNormal"> <p class="MsoNormal">Mike</div> 

Re: PostGres Tables in ArcSDE and ArcCatalog.

From
Scott Marlowe
Date:
On Mon, Aug 30, 2010 at 1:31 PM, Michael Andrew Babb <babbm@uw.edu> wrote:
> Hi All,
> If I execute a make table query along the lines of “select * into
> SF30001_test from SF30001” I can interact with the table in ArcCatalog just
> fine.

what do
\z SF30001
\z SF30001_test
say about the permissions on the two tables?
--
To understand recursion, one must first understand recursion.


Re: PostGres Tables in ArcSDE and ArcCatalog.

From
Michael Andrew Babb
Date:
Hi Scott,

Of all things, ArcSDE does not like tables with names consisting of mixed case letters. In addition, ArcSDE does not
likefield names consisting of mixed case letters. 

I changed the case of the field names and table names to all lowercase and ArcCatalog could see the tables just fine.
However,PostGRES can interact with tables with mixed case letters just fine. 

Thanks,

Mike


-----Original Message-----
From: Scott Marlowe [mailto:scott.marlowe@gmail.com]
Sent: Monday, August 30, 2010 11:40 PM
To: Michael Andrew Babb
Cc: pgsql-sql@postgresql.org
Subject: Re: [SQL] PostGres Tables in ArcSDE and ArcCatalog.

On Mon, Aug 30, 2010 at 1:31 PM, Michael Andrew Babb <babbm@uw.edu> wrote:
> Hi All,
> If I execute a make table query along the lines of "select * into
> SF30001_test from SF30001" I can interact with the table in ArcCatalog just
> fine.

what do
\z SF30001
\z SF30001_test
say about the permissions on the two tables?
--
To understand recursion, one must first understand recursion.