Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aktivo

    Thread Affinity

    How to set thread or application affinity in C++Builder 2007 .. 2010 ?
  2. aktivo

    pg_dump, pg_restore

    pg_dump.exe --file=_db_test_c.pgb --format=c --verbose --encoding=UTF8 --host=172.16.19.120 --username=postgres db_test
  3. aktivo

    pg_dump, pg_restore

    You don't reproduce my problem because you don't use function for DEFAULT VALUE in TABLE. You use nextval - this works ok. THIS IS FULL PG_DUMP FILE: See below... -- -- PostgreSQL database dump -- -- Started on 2008-02-12 12:20:56 SET client_encoding = 'UTF8'; SET standard_conforming_strings...
  4. aktivo

    pg_dump, pg_restore

    This is part of pg_dump file: ......... ......... ......... SET search_path = moja_schema, pg_catalog; CREATE FUNCTION fn_sq_id_kotuc() RETURNS character varying AS $$ DECLARE t_id VARCHAR; BEGIN t_id := 'KT' || LTrim( to_char( nextval( 'moja_schema.sq_id_kotuc' ), '00000000' ) )...
  5. aktivo

    pg_dump, pg_restore

    I did following steps: - upgrade PostgreSQL from version 8.1.4 to 8.1.11 - pg_dump - install version 8.3.0 on another computer - pg_restore It's same problem. All fields which had as default value some function, that function don't have schema name. for example: BEFORE PG_DUMP: .... "id_kotuc"...
  6. aktivo

    pg_dump, pg_restore

    pg_dump remove name of schema from default value. i don't know why. how can i solve this problem ? For example: BEFORE PG_DUMP: CREATE TABLE "is8"."tb_kotuce" ( "id_kotuc" CHAR(10) DEFAULT is8.fn_sq_id_kotuc() NOT NULL, ... ... AFTER PG_RESTORE CREATE TABLE "is8"."tb_kotuce" (...

Part and Inventory Search

Back
Top