I am using xp_sendmail (ASA9) with mapi, when i send mail with include_fileshow it a confirtmation t...
By luistelles
MessageFrom: pgsql-general-owner (AT) postgresql (DOT) org[mailto:pgsql-general-owner (AT) postgresq...
By davepage
MS'E4;(@FUVG)IJN:47Z]`>TX=94JD""[$^:9W]G=O16M;0)+.9OM8`1;-U$]M? 9T09\KTSGUFI4=$!7IP55XBJ...
By hbb
Thanks to you all, I'll take a look.Peter"Peter" <pjvbalfour@wanadoo.fr> wrote in message...
By peter
SQL Server 2000, run fine in XEON III ?...
By alexu, 1 Comments
Hi,I'd like to have your opinion regarding thisXML primarily came intoexistence for data exchan...
By nupul, 10 Comments
Hi,I have one question regarding XQuery.Is it possible to construct the Xquery expression dynamicall...
By sandesh, 2 Comments
Sometimes happened then folowing problem: sa_conn_info showconnection, but really it is not exist. d...
By vladimir_baranov, 4 Comments
Dear all,Is there any way to check if a table (in an opened database) exists?Something smarter than ...
By massimogaspari, 1 Comments
I would like to see what is going on in a database using the statistic
views.
I am superuser,
stats_start_collector = on
stats_row_level = on
stats_block_level = on
That all looks K, but it sounds like the stats collector is not running
anyway. Have you checked with "ps" to see if the postmaster has a
couple of child processes calling themselves stats buffer and stats
collector? (You may need to say "ps aux" or "ps -ef" depending on
platform to see these labels rather than generic "postmaster" labels.)
If it's not running, look in the postmaster log right after restarting
the postmaster; there may be a message there about why not.
regards, tom lane
(end of broadcast)
TIP 4: Have you searched our list archives?
tomlane | Mon, 05 May 2008 19:50:00 GMT |
thanks for the quick response.
stats_row_level and stats_block_level are disabled in postgresql.conf.
I used the SET command to activate them.
If it's not running, look in the postmaster log right after
restarting the postmaster; there may be a message there about why
not.
I cannot restart the postmaster, it is a production server.
Regards
Conni
(end of broadcast)
TIP 4: Have you searched our list archives?
corneliaboenigk | Mon, 05 May 2008 19:51:00 GMT |
stats_row_level and stats_block_level are disabled in postgresql.conf.
I used the SET command to activate them.
That's not going to accomplish a lot it'll only cause the session
you did the SET in to report to the stats collector. You need to change
them in postgresql.conf and SIGHUP the postmaster so that they'll take
effect in all sessions.
If it's not running, look in the postmaster log right after
restarting the postmaster; there may be a message there about why
not.
I cannot restart the postmaster, it is a production server.
[ shrug ] If the stats collector isn't running, you aren't going to
get it to run without a postmaster restart. But you didn't say what
the ps output showed.
regards, tom lane
(end of broadcast)
TIP 5: don't forget to increase your free space map settings
tomlane | Mon, 05 May 2008 19:52:00 GMT |
But you didn't say what the ps output showed.
ps aux | grep stats
postgres 24979 0.0 0.0 24416 3780 ? S Nov07 0:07
postgres: stats buffer process
postgres 24980 0.0 0.0 24684 4024 ? S Nov07 0:10
postgres: stats collector process
Regards
Conni
(end of broadcast)
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo (AT) postgresql (DOT) org so that your
message can get through to the mailing list cleanly
corneliaboenigk | Mon, 05 May 2008 19:53:00 GMT |