[PERFORM] index creation order?

2003-10-31 Thread Allen Landsidel
Yet another question.. thanks to everyone responding to all these so far.. ;) This one is basically.. given I have a big table already in COPY format, about 28 million rows, all keys guaranteed to be unique, I'm trying to find out which of the following will get the import finished the fastest:

Re: [PERFORM] index creation order?

2003-10-31 Thread Josh Berkus
Allen, a) CREATE TABLE with no indexes or keys. Run the COPY (fast, ~30min), then CREATE INDEX on each column it's needed on, and ALTER TABLE for the pk and each fk needed. Did you ANALYZE after the copy? If there isn't a significant difference between all of them, performance wise, I

Re: [PERFORM] index creation order?

2003-10-31 Thread Allen Landsidel
Nope, still 7.3.4 here.. I am very excited about 7.4 though.. almost as excited as I am about FreeBSD 5.x going -STABLE.. it's a close race between the two.. I'll keep this in mind for when I update though, thanks. At 11:23 10/31/2003, Rod Taylor wrote: If it is 7.4 beta 5 or later, I would

Re: [PERFORM] index creation order?

2003-10-31 Thread Chester Kustarz
is there any way to update the stats inside a transaction? what i have is something like: select count(*) from foo; - 0 begin; copy foo from '/tmp/foo'; -- about 100k rows -- run some queries on foo which perform horribly because the stats -- are way off (100k rows v. 0 rows) commit; it

Re: [PERFORM] index creation order?

2003-10-31 Thread Rod Taylor
begin; analyze foo; ERROR: ANALYZE cannot run inside a BEGIN/END block i am using version 7.2.3. Time to upgrade. 7.3 / 7.4 allows this to happen. signature.asc Description: This is a digitally signed message part

Re: [PERFORM] index creation order?

2003-10-31 Thread Tom Lane
Chester Kustarz [EMAIL PROTECTED] writes: it seems that you cannot run analyze inside a transaction: You can in 7.3.* ... regards, tom lane ---(end of broadcast)--- TIP 2: you can get off all lists at once with the