Hi Zia,<br><br>If it is at all possible, I would suggest that you use the shp2pgsql utility to create an SQL load file from your .dbf files.  The after verifying that the SQL insert statements are correct, you can load the file into your DB.  Assuming you have a dbf file named "test.dbf", the workflow would look something like this:<br>
<br>1. shp2pgsql -D test new_table_name db_name > test.sql<br>test: shape (.shp) or index files (.shx) can not be opened, will just import attribute data.<br><br>2. View/edit insert statements in test.sql:<br>BEGIN;<br>
CREATE TABLE "test" (gid serial PRIMARY KEY,<br>"name" varchar(100));<br>COPY "test" ("name") FROM stdin;<br>Papua New Guinea<br>\.<br>END;<br><br>3. Load data into DB using psql utility.<br>
psql -d db_name -f test.sql<br><br>Roger<br>--<br><br><br><div class="gmail_quote">On Sat, Mar 28, 2009 at 7:19 AM, Marc Jansen <span dir="ltr"><<a href="mailto:jansen.marc@gmx.de">jansen.marc@gmx.de</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hey Zia,<br>
<br>
hope this helps:<br>
<br>
Try to chhange the columns data-type (Be sure to have a backup):<br>
<br>
ALTER TABLE table_name ALTER COLUMN column_name TYPE new_type<br>
<br>
see e.g.: <a href="http://www.postgresql.org/docs/8.0/static/sql-altertable.html" target="_blank">http://www.postgresql.org/docs/8.0/static/sql-altertable.html</a><br>
<br>
If you are experiencing problems, the USING- Part in that documentation might be of interest.<br>
<br>
Regards,<br>
<br>
Marc<br>
<br>
<br>
Zia Ahmed schrieb:<div><div></div><div class="h5"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I am new in postgis. I ogr2ogr to import my dbase file to my data base. After importation, data type of some of the column has changed to numeric to character .  How do I change data type to character to numeric again in pgAdminIII environment?<br>

<br>
Thanks<br>
<br>
Zia<br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
<br>
</blockquote>
<br>
<br>
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</div></div></blockquote></div><br>