Re: Migration from SQLServer

Поиск
Список
Период
Сортировка
От Nigel J. Andrews
Тема Re: Migration from SQLServer
Дата
Msg-id Pine.LNX.4.21.0305160937000.30690-100000@ponder.fairway2k.co.uk
обсуждение исходный текст
Ответ на Re: Migration from SQLServer  ("Nigel J. Andrews" <nandrews@investsystems.co.uk>)
Ответы Re: Migration from SQLServer  (Tapan Trivedi <ttrivedi@webifyservices.com>)
Список pgsql-general
On Fri, 16 May 2003, Nigel J. Andrews wrote:

> On Fri, 16 May 2003, Tapan Trivedi wrote:
>
> > b. Create script. Let me explain - I generated the script from MSSQL and
> > it gave a whole lot of issues (for SQL statements and types) . When  I
> > resolved all of them, I encountered Relation ".." not found error. The
> > only way I could resolve it was by giving the table names in quotes. I
> > guess I should have converted all table names in lowercase and then all
> > would be OK.
> >
> > What I am trying to find out now is - Is there anyway I can avoid
> > dropping the database and recreating it ??
>
> Sure, take a look at relname in pg_class and typname in pg_type.  The other
> columns in those table will help you decide who owns what and what schema
> they're in so you can change only those ones you want to.

Oh, and don't forget to start a transaction before making the changes so that
you get the chance to rollback if you make a mistake, these are system tables.


--
Nigel Andrews


В списке pgsql-general по дате отправления:

Предыдущее
От: "Nigel J. Andrews"
Дата:
Сообщение: Re: Migration from SQLServer
Следующее
От: Tapan Trivedi
Дата:
Сообщение: Re: Migration from SQLServer