Greenplum Create Database Error and Resolution

Pivotal Greenplum is one of widely used MPP relational databases. You can handle huge amount of data with Greenplum. Sometimes, it is very difficult to create a database in the Greenplum server because of connection issue. In this article, we will check how to resolve Greenplum create database error and steps required to resolve. Greenplum Create Database Error Below are the most common database errors that you may face while creating a database on Greenplum server. psql: FATAL: database "gpadmin" does not existERROR: source database "template1" is being accessed by…

Continue ReadingGreenplum Create Database Error and Resolution
Comments Off on Greenplum Create Database Error and Resolution

Amazon Redshift Identify and Kill Table Locks

When you work on large enterprise data warehouse, you will be working with multiple tables and those tables will be shared across multiple data marts within your application. Sometimes, users will explicitly lock the access to the table if they are refreshing or updating data. In this article, we will check how to identify and kill Redshift Table locks. Redshift Identify and Kill Table Locks You can use Redshift system tables to identify the table locks. One such table is STV_LOCKS, this table holds details about locks on tables in…

Continue ReadingAmazon Redshift Identify and Kill Table Locks
Comments Off on Amazon Redshift Identify and Kill Table Locks

Amazon Redshift Derived Tables and Examples

When you work in an enterprise data warehouse (EDW), you will work with multiple data sources. Sometimes you may have to derive the table to get only required columns instead of joining big table. This process not only improve the performance, but also avoid unnecessary memory usage. In this article, we will check how to improve the performance of Redshift query by creating derived tables with some examples. Amazon Redshift Derived Tables In the real world scenario, you may derive the some column from base table and instead of creating…

Continue ReadingAmazon Redshift Derived Tables and Examples
Comments Off on Amazon Redshift Derived Tables and Examples

How to Find Redshift Table Size? – Examples

Amazon Redshift is a fully managed, distributed relational database on the AWS cloud. Hardware's are completely managed by the Amazon and to make database administrator life easy, it has bundled with many system tables. Those system tables hold abundant information about your database, tables, rows, statistics and many more. You can use these system tables to find Redshift table size without giving a second thought. How to Find Redshift Table Size? When you create a table in Redshift database, the table does not consume any space on the data slices…

Continue ReadingHow to Find Redshift Table Size? – Examples
Comments Off on How to Find Redshift Table Size? – Examples

Redshift DECODE Function Syntax and Examples

Amazon Redshift supports the DECODE function and it is similar to DECODE function in other relational databases such as Oracle, SQL Server, MySQL, Netezza, etc. You can use the Redshift DECODE function to implement the simple CASE conditional statement or an if-then-else statement. This command is a shorthand form of the Redshift CASE Conditional function. Redshift DECODE Function A DECODE expression in Redshift replaces a specific value with either another specific value or a default value, depending on the result of an equality condition. The DECODE function operation is equivalent…

Continue ReadingRedshift DECODE Function Syntax and Examples
Comments Off on Redshift DECODE Function Syntax and Examples

Generate Redshift DDL using System Tables

Amazon Redshift is a fully managed, distributed relational database on the AWS cloud. Amazon will manage the hardware's and your only task is to manage databases that you create as a result of your project. In this article, we will check one of the administrator tasks, generate Redshift view or table DDL using System Tables. Generate Redshift DDL using System Tables Amazon Redshift support many system tables, that will make your life easier as a database administrator. All the activity information's such as executed query, DDL, memory information, etc. are…

Continue ReadingGenerate Redshift DDL using System Tables
Comments Off on Generate Redshift DDL using System Tables

Redshift Split Delimited Fields into Table Records and Examples

Amazon Redshift is relatively new to relational databases. It is based on PostgreSQL, but being a columnar distributed database, it does not support all functions that are available in PostgreSQl. One of such requirement is split a delimited string into rows. In this article, we will check how to split delimited fields into table records or rows using Redshift built in function. Not that, the method described in this article usually works when you have a fixed number of delimited fields in your input string. Say, you have 5 delimited…

Continue ReadingRedshift Split Delimited Fields into Table Records and Examples
Comments Off on Redshift Split Delimited Fields into Table Records and Examples

Amazon Redshift DUAL Table Alternative

Amazon Redshift like most of the PostgreSQL relation databases like Netezza or Vertica does not provide support for dual system table. You can simply use the SELECT clause with nothing to display the results. In this article, we will check what is Amazon Redshift dual table alternative and how to use it. What is DUAL table? The DUAL is special one row, one column table present by default in databases. The database like, oracle automatically create dual table and grant SELECT access to all users by default. The dual table…

Continue ReadingAmazon Redshift DUAL Table Alternative
Comments Off on Amazon Redshift DUAL Table Alternative

Psql Windows Exit Status Codes – Explanation

The psql is a command line interface to connect to any postgreSQL relational database systems such as Redshift, Greenplum, etc. You can connect to your Redshift or any other PostgreSQL system using psql and execute queries without needing any particular tool. Your psql execution command may get fail and you need a status code to provide a proper error message to client. In this article, we will check what are psql windows exit status codes with explanation. Psql Windows Exit Status Codes When you execute queries interactively using psql prompt…

Continue ReadingPsql Windows Exit Status Codes – Explanation
Comments Off on Psql Windows Exit Status Codes – Explanation

How to Select Redshift Sort Key- Choose Best Sort Key

Amazon Redshift is fully managed, distributed, petabyte scale relational database system on Amazon web services (AWS). Redshift is a columnar database, it is capable of performing complex queries efficiently over petabytes of data. You can scale the database based on your needs and handle growing datasets. Redshift comes with built-in query optimization features. As a part of performance enhancement step, you can distributes table data on particular column(s). Another important feature is the Redshift sort key to boost your Redshift data access mechanism. In this article, we will check how…

Continue ReadingHow to Select Redshift Sort Key- Choose Best Sort Key
Comments Off on How to Select Redshift Sort Key- Choose Best Sort Key