Skip to main content

Questions tagged [postgresql-9.1]

0 votes
0 answers
421 views

Trying to migrate PG9.1 data to PG11.5 I did initdb using the following command. "<path>\bin\initdb.exe" --locale="English_Malaysia.1252" -D "<path>\pgupgrade"...
Neeraj Bansal's user avatar
0 votes
1 answer
2k views

I'm a newbie at PostgreSQL. I'm trying to setup a streaming replication (postgresql 9.1). And I want to test backup & restore on local. I also made backup files successfully (I think so) by using ...
VitDuck's user avatar
0 votes
0 answers
136 views

We need to add few Ip address in our pg_hba.conf file so that some new servers can connect to our postgresql database. We did the changes to pg_hba.conf like below old pg_hba.conf # TYPE DATABASE ...
SinghVK's user avatar
  • 173
0 votes
1 answer
744 views

16-byte password hashes of some application are stored in the postgresql-9.1 database as LOB data. (I don't know why) So I can get hash: # select * from pg_largeobject where loid=16916; loid | ...
Tarwirdur Turon's user avatar
10 votes
3 answers
2k views

According to PostgreSQL 7.1 through 9.1 (now unsupported), ALIAS is listed as a reserved word, at least for SQL-99. Later versions do not show it - suggesting that it has been dropped as a reserved ...
user avatar
2 votes
1 answer
174 views

Recently ran into the following: Consider the tables created by this: create table table_a ( id bigserial not null, last_update timestamp, primary key (id) ); create table ...
KdgDev's user avatar
  • 221
1 vote
2 answers
621 views

Given a table t: id | name ------------ 1 | abcfug 1 | deffug 1 | hijfug 2 | etc How can I do something like: select string_agg(strip_lcs(name), ', ') from t where id = 1 returning: abc, def, ...
Sam's user avatar
  • 129
0 votes
2 answers
77 views

I have 2 tables segments and summaries. I want to list the shows in a date interval and just show the latest updated segments (in bold) since it is the freshest copy of the segment for that person. ...
mamesaye's user avatar
  • 405
0 votes
2 answers
971 views

How to get how many times my PostgreSQL database restarted and how to get each restart time? I do not want to get the details from the log file. Is there any other way to get those details?
Arun Raut's user avatar
-1 votes
1 answer
342 views

In our production server which is having PostgreSQL 9.1 installed, too heavy archive logs are being generated, approximately 41 GB/day. Heavy updates, deletes and inserts are the cause of this. Can ...
Arun Raut's user avatar
3 votes
1 answer
7k views

How can I check for fragmentation in PostgreSQL 9.1?
Arun Raut's user avatar
1 vote
1 answer
153 views

We recently migrated hive metastore database from embedded postgresql(coming with cloudera hadoop) to external postgresql(standalone in vm server). After that we notified that there is increase of 5 ...
Mughil's user avatar
  • 493
0 votes
1 answer
641 views

im using following query with PostgreSQL 9.1.13: SELECT day::DATE AS date, COUNT(s.id) AS sale_count, COUNT(c.id) AS claim_count FROM GENERATE_SERIES('2017-08-10', '2017-08-13', ...
hierchristian's user avatar
1 vote
0 answers
285 views

Because of manual cleanup of WAL files, my DB is corrupted. PostGres is throwing this error : 2017-08-10 20:44:41.887 UTC 2661 LOG: database system was interrupted; last known up at 2017-08-03 ...
Vineet's user avatar
  • 11
1 vote
2 answers
3k views

I understand public is not a typical role in postgres: dav-gis=# \duS public List of roles Role name | Attributes | Member of -----------+------------+----------- But why can I revoke ...
Dylan Hettinger's user avatar

15 30 50 per page
1
2 3 4 5
19