Nelson,
> If i migrate the database from Text file using pgadmin tools,the
> table
> and data record will be created automatically and no primary key
> assign
> so now i need to assign the key but unfortunely i can't change the
> field
> property. i.e. I can't assign "two-column primary key."
You'll need to use the command line for this. Open an ad-hoc query
window from PGAdminII (the wierd-looking monster). Run the following
command:
ALTER TABLE table_name ADD CONSTRAINT table_name_PK
PRIMARY KEY (column_1, column_2);
... where you replace table_name, column_1 and column_2 with the
appropriate objects from your database.
BTW, the above command will fail if it turns out that the combination
of column_1 and column_2 is not unique, or if either column has NULLs.
-Josh Berkus