Optimizing Materialized views in postgreSQLPostgreSQL “DESCRIBE TABLE”Show tables in PostgreSQLPostgreSQL AutoincrementCreating a copy of a database in PostgreSQLHow can I drop all the tables in a PostgreSQL database?How to drop a PostgreSQL database if there are active connections to it?How to start PostgreSQL server on Mac OS X?How to exit from PostgreSQL command line utility: psqlHow to change PostgreSQL user password?Which version of PostgreSQL am I running?

Why did they ever make smaller than full-frame sensors?

Can I disable a battery powered device by reversing half of its batteries?

Telling my mother that I have anorexia without panicking her

The Planck constant for mathematicians

How is Team Scooby Doo (Mystery Inc.) funded?

Why would "an mule" be used instead of "a mule"?

Should I leave the first authorship of our paper to the student who did the project whereas I solved it?

Has SHA256 been broken by Treadwell Stanton DuPont?

Why isn't `typename` required for a base class that is a nested type?

Linear Programming with additional "if-then"/"Default to zero" constraints?

Were Roman public roads build by private companies?

How do EVA suits manage water excretion?

Maintenance tips to prolong engine lifespan for short trips

Have there been any countries that voted themselves out of existence?

Is there a reliable way to hide/convey a message in vocal expressions (speech, song,...)

How are aircraft depainted?

Why island and not light?

Confirm the ending of a string

How do I determine what is "magic" and "bearing magic" for Detect Magic?

Do they still use tiger roars in the 2019 "Lion King" movie?

Glue or not to glue boots

My research paper filed as a patent in China by my Chinese supervisor without me as inventor

Where can I get an anonymous Rav Kav card issued?

Is it appropriate for a professor to require students to sign a non-disclosure agreement before being taught?



Optimizing Materialized views in postgreSQL


PostgreSQL “DESCRIBE TABLE”Show tables in PostgreSQLPostgreSQL AutoincrementCreating a copy of a database in PostgreSQLHow can I drop all the tables in a PostgreSQL database?How to drop a PostgreSQL database if there are active connections to it?How to start PostgreSQL server on Mac OS X?How to exit from PostgreSQL command line utility: psqlHow to change PostgreSQL user password?Which version of PostgreSQL am I running?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to make a materialized view in PostgreSQL which takes around 5327 sec to execute the query.I have done indexing and view has 8 columns and around 5000 rows.Can you suggest me a solution to make it more optimum?










share|improve this question





















  • 2





    We can't help you without seeing the table and index structure, and maybe some sample data also.

    – Tim Biegeleisen
    Mar 28 at 9:55











  • Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

    – Bear Brown
    Mar 28 at 9:55






  • 1





    You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

    – a_horse_with_no_name
    Mar 28 at 10:00


















0















I am trying to make a materialized view in PostgreSQL which takes around 5327 sec to execute the query.I have done indexing and view has 8 columns and around 5000 rows.Can you suggest me a solution to make it more optimum?










share|improve this question





















  • 2





    We can't help you without seeing the table and index structure, and maybe some sample data also.

    – Tim Biegeleisen
    Mar 28 at 9:55











  • Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

    – Bear Brown
    Mar 28 at 9:55






  • 1





    You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

    – a_horse_with_no_name
    Mar 28 at 10:00














0












0








0








I am trying to make a materialized view in PostgreSQL which takes around 5327 sec to execute the query.I have done indexing and view has 8 columns and around 5000 rows.Can you suggest me a solution to make it more optimum?










share|improve this question
















I am trying to make a materialized view in PostgreSQL which takes around 5327 sec to execute the query.I have done indexing and view has 8 columns and around 5000 rows.Can you suggest me a solution to make it more optimum?







postgresql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 9:57







Pranav Mahaddalkar

















asked Mar 28 at 9:53









Pranav MahaddalkarPranav Mahaddalkar

11 bronze badge




11 bronze badge










  • 2





    We can't help you without seeing the table and index structure, and maybe some sample data also.

    – Tim Biegeleisen
    Mar 28 at 9:55











  • Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

    – Bear Brown
    Mar 28 at 9:55






  • 1





    You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

    – a_horse_with_no_name
    Mar 28 at 10:00













  • 2





    We can't help you without seeing the table and index structure, and maybe some sample data also.

    – Tim Biegeleisen
    Mar 28 at 9:55











  • Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

    – Bear Brown
    Mar 28 at 9:55






  • 1





    You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

    – a_horse_with_no_name
    Mar 28 at 10:00








2




2





We can't help you without seeing the table and index structure, and maybe some sample data also.

– Tim Biegeleisen
Mar 28 at 9:55





We can't help you without seeing the table and index structure, and maybe some sample data also.

– Tim Biegeleisen
Mar 28 at 9:55













Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

– Bear Brown
Mar 28 at 9:55





Welcome to stackoverflow.com. Please learn how to create a Minimal, Complete, and Verifiable Example.

– Bear Brown
Mar 28 at 9:55




1




1





You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

– a_horse_with_no_name
Mar 28 at 10:00






You need to supply the create table statements for all tables involved in the query including all create index statements, the create materialized view statement and the execution plan of the underlying SELECT statement generated using explain (analyze, buffers). Everything as formatted text please, no screen shots. edit your question, do not post code in comments

– a_horse_with_no_name
Mar 28 at 10:00













0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55394626%2foptimizing-materialized-views-in-postgresql%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55394626%2foptimizing-materialized-views-in-postgresql%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript