Strange scenary.

Поиск
Список
Период
Сортировка
От Guido Barosio
Тема Strange scenary.
Дата
Msg-id 20040703181856.3c861bb4.gbarosio@sinectis.com.ar
обсуждение исходный текст
Ответы Re: Strange scenary.
Список pgsql-admin
Hi,

    This is the problem. I create a database from cero. I create a empty table, name students. I ask for an EXPLAIN
on this new table, and the output of the query analyzer tells me that this table is filled with 1000 rows.

    So...why is that?

This were the steps.

-bash-2.05b$ dropdb scopes
DROP DATABASE
-bash-2.05b$ createdb scopes
CREATE DATABASE
-bash-2.05b$ psql scopes
Welcome to psql, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

scopes=# create table students (id smallint, name text);
CREATE
scopes=# explain select * from students ;
NOTICE:  QUERY PLAN:

Seq Scan on students  (cost=0.00..20.00 rows=1000 width=34)

EXPLAIN
scopes=# select * from students ;
 id | name
----+------
(0 rows)

scopes=# VACUUM students ;
VACUUM
scopes=# explain select * from students ;
NOTICE:  QUERY PLAN:

Seq Scan on students  (cost=0.00..0.00 rows=1 width=34)

EXPLAIN
scopes=#



Anyone can tell me why this is going on? I mean..as I see this is not true.



--
-------------------------------------------
Guido Barosio
Buenos Aires, Argentina
-------------------------------------------


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

Предыдущее
От: Adam Smith
Дата:
Сообщение: Re: Is this a "Stupid Question" ?
Следующее
От: Hemapriya
Дата:
Сообщение: Connect to postgres from a script using password