SlideShare a Scribd company logo
Vertica | Vertica Management console | Tableau How to install Vertica in a single node. Microsoft Excel | Power Query | Power View 
Anil Maharjan
Page | 2 
Install Vertica in a single node. This article is mainly related: 
1. Setup of Vertica in a single node. 
2. Vertica Console Management 
3. Tableau 
4. DBeaver 
During my free time, I want to try to install Vertica and want to know what it is all about. what are the things we should know while installing Vertica and what will be the issues, difficulties, requirements and process do we need to follow in order to setup Vertica and play around it. The HP Vertica Analytic Database is based on a massively parallel processing (MPP), shared-nothing architecture, in which the query processing workload is divided among all nodes of the Vertica database. If you want to try Vertica and play around along with this columnar database then you should follow below steps. Step 1: Firstly you should have any Linux OS installed in a machine. For Vertica, the minimum requirement is to have 3 nodes that mean’s three Linux OS running in different nodes. But, in my case I want to try to install in only one node and try it out. I have windows 7 OS install and where I have install Red hat Linux in my virtual machine. So, make sure you have at least one Linux OS installed machine. 
You may find the below link to find out the minimum requirements and server configuration: http://my.vertica.com/docs/5.1.6/HTML/index.htm#18671.htm General Platform Recommendations  ext4 is recommended over ext3 for performance reasons.  Use 2GB of swap space regardless of the amount of installed RAM.  Place the database /catalog directory on the same drive as the OS. 
Step 2: 
Download all the required software related to Vertica from the site https://my.vertica.com/downloads/ In order to download you can sign up in a community edition. All the stuffs you can know from below video: 
http://www.vertica.com/files/myVerticaVideo/myVertica_Audio_Video_Combined_121009J.html Here, I have downloaded the below versions:
Page | 3 
Step 3: After that move the setup files into Red Hat Linux virtual machine directory. I have put the setup files into directory as /data/software and then open the terminal in VM, Run the below command as root user: rpm -Uvh /data/Software/vertica-7.0.2-1.x86_64.RHEL5.rpm Then after that it will ask to run the /opt/vertica/sbin/install_vertica to complete the installation. 
Step 4: Run the script in master node # /opt/vertica/sbin/install_vertica -s host_list -r rpm_package -u dba_username
Page | 4 
Here I used only one node so below is my script. /opt/vertica/sbin/install_vertica -s localhost -r /data/Software/vertica-7.0.2-1.x86_64.RHEL5.rpm - u dbadmin Here, you need to note that if you want to install Vertica in multiple nodes then you can include different nodes or host list. Where options are: -s host_list comma-separated list of hostnames or IP addresses to include in the cluster; do not include space characters in the list. 1. -r "vertica_6.0.x.x86_64.RHEL5.rpm" 2. -u dbadmin user name 3. -p dbadmin passowrd 4. -P root password 5. -L location of the license 6. -d where data will be located 7. -s nodes that will be part of the cluster 8. -r location of the installation rpm 
-- If you omit the -u parameter, the default database administrator account name is dbadmin who will only use the admintools. You can find more about installing vertica in 3nodes or complete cluster Installation in below link: 
http://www.aodba.com/main_articles_single.php?art=83&page=vertica
Page | 5 
Step5: After that you will get some issues or errors as below which I have got >> Validating node and cluster prerequisites... Failures during local (OS) configuration for verify-127.0.0.1.xml: HINT (S0305): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0305 TZ is unset for dbadmin. Consider updating .profile or .bashrc HINT (S0041): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0041 Could not find the following tools normally provided by the mcelog package: mcelog HINT (S0040): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0040 Could not find the following tools normally provided by the pstack or gstack package: pstack/gstack WARN (N0010): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=N0010 Linux iptables (firewall) has some non-trivial rules in tables: filter FAIL (S0150): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0150 These disks do not have 'deadline' or 'noop' IO scheduling: '/dev/sda1' ('sda') = 'cfq', '/dev/sda3' ('sda') = 'cfq' FAIL (S0020): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0020 Readahead size of sda (/dev/sda1,/dev/sda3) is too low for typical systems: 256 < 2048 FAIL (S0030): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0030 ntpd process is not running: ['ntpd', 'ntp'] FAIL (S0081): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0081 SELinux appears to be enabled and not in permissive mode. FAIL (S0310): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0310 Transparent hugepages is set to 'always'. Must be 'never' or 'madvise'. Then go through each error in the link below 
https://community.vertica.com/vertica/topics/ This is all about some cluster prerequisites. Here go through each FAIL(XXXX) in the community forum where you will get the solution for each error. Step 6: After that, run the admintools from the dbadmin user then you can see as
Page | 6 
After that create the database: Then choose the host name where database will reside:
Page | 7 
Then, define the Catalog location and data path
Page | 8 
Since I have installed Vertica in a single node so there will not be the concept of K-Safe method. If we are installing at least 3nodes then we can have k-safe. 
After that,
Page | 9 
Then create Vertica database as Vertica_DB in a single node. 
After that the database will created.
Page | 10 
Just click OK and you will see the Database configuration: 
Then finally you can exit from the admintools:
Page | 11 
Step 7: Vertica management console: After successful installation of Vertica Database now you can install the Vertica management console: The new HP Vertica Management Console is an enterprise database management tool that provides a unified view of your HP Vertica database and lets you monitor multiple clusters from a single point of access. You can find more on below link: 
https://my.vertica.com/docs/5.1.6/HTML/index.htm#16773.htm Run the command as a root user: rpm –Uvh vertica-console-7.0.2-1.x86_64.RHEL5.rpm 
After successful installation it will show URL as https://localhost.localdomain:5450/webui during the installation. Just go through the URL and accept the license.
Page | 12 
Then configure the necessary username, password, UNIX group id:
Page | 13 
After that you will get the authentication configure page where you can select the LDAP or Management console. 
Then you will see as
Page | 14 
After then you can login or access along with the username which you had configured in console management. 
After successful login you can see HP Vertica Management Console, where you can monitor multiple clusters from a single point of access.
Page | 15 
Then you can see the running database and cluster along with all nodes. Since I have only one node so here we can see only one node.
Page | 16 
So finally you can see the database health thorough the console management. Also, you can login to console management from anywhere just you change the localhost to the Host IP address where you have installed console management. 
What you can do with Management Console  Create a database cluster on hosts that do not have HP Vertica installed  Create, import, and monitor multiple HP Vertica databases on one or more clusters from a single point of control  Create MC users and grant them access to MC and MC-managed databases  Manage user information and monitor their activity on MC  Configure database parameters and user settings dynamically  Access a single message box of alerts for all managed databases  Export all database messages or log/query details to a file  View license usage and conformance  Diagnose and resolve MC-related issues through a browser  Access a quick link to recent databases and clusters  View dynamic metrics about your database cluster 
The features is so much helpful for the DBA’s and the developer from where they can easily monitor multiple HP Vertica databases on one or more clusters from a single point of control.
Page | 17 
Tableau: Tableau can help anyone see and understand their data. Connect to almost any database, drag and drop to create visualizations, and share with a click. To know the story behind your data which is stored in Vertica DB, you need to have a reporting tool which can make a quick decision and helps you to get the value of your data. This is where Tableau can be used. Which is one of the best Reporting Tool I must say. One can go to Tableau portal and download the software and play around any database, Worksheets, excel files and so many other data files. I have downloaded both desktop and public version of Tableau, and where as desktop version works for 15 days trail. Now in order to connect Vertica DB through Tableau you need to install the Vertica client in your PC i.e. my windows 7 machine, where you need to download the vertica-client-7.0.2-1.64 from https://my.vertica.com/ Also, you can install the test db along with Vertica as VMART schema but in my case I am getting error so I have posted into Vertica community .One can join this community and can share ideas and issues. https://community.vertica.com/vertica/topics/cannot-create-vmart-example-db After that you can open tableau desktop and connect to Vertica DB in order to play around with and to find the story behind your data.
Page | 18 
Also, you can have public tableau install in your PC and do some analysis using different worksheets, I have also done some analysis related to ‘Average Percentage of Internet Users across the World ‘ and published into public server which is free that Tableau providing for normal users. https://public.tableausoftware.com/views/AveragePercentageofInternetUsersaccrostheWorld/AverageofIndividualsUsingtheInternet?:showVizHome=no#1 DBeaver: DBeaver is free and open source (GPL) universal database tool for developers and database administrators.  Usability is the main goal of this project, program UI is carefully designed and implemented.  It is freeware.  It is multiplatform.  It is based on opensource framework and allows writing of various extensions (plugins).  It supports any database having a JDBC driver.  It may handle any external datasource which may or may not have a JDBC driver.  There is a set of plugins for certain databases (MySQL and Oracle in version 1.x) and different database management utilities (e.g. ERD You can find more from the link : http://dbeaver.jkiss.org/about/
Page | 19 
I just found this tool so easy to connect with Vertica DB and do some queries analysis. Summary: Through this article, I am sure you are now able to understand how you can install Vertica Analytical Database in a single node and how you can use Vertica Management Console to monitor multiple clusters from a single point of access. How you can easily get the story behind your data in Vertica DB by using the Tableau Reporting tool. Also, how you can use quires to do more detail analysis by using the DBeaver tool in Vertica Database.
Page | 20 
Anil Maharjan 
Highly motivated Business Intelligence Engineer having leadership abilities and team work skills as well as the ability to accomplish tasks under minimal direction and supervision. Has more than 4 years of development & implementation experience in HealthCare Data Analytics, Telecommunication Software Industry. 
Public speaker in the local SQL Server users group & community, nominated as local speaker for SQL Saturday#180 and a program committee member of Professional Association for SQL Server (PASS) Summit 2014 Program Committee for the ‘BI Platform Architecture, Development & Administration Team’. 
Blog site: http://anilmaharjanonbi.wordpress.com 
http://bidn.com/blogs/anil 
Personal site: http://maharjananil.com.np 
Twitter: @Anil_Maharjan 
Linked-in: http://np.linkedin.com/in/maharjananil 
Slideshare: http://www.slideshare.net/anil_maharjan/presentations 
Email: anil_pas@hotmail.com

More Related Content

What's hot

CS8651 Internet Programming - Basics of HTML, HTML5, CSS
CS8651   Internet Programming - Basics of HTML, HTML5, CSSCS8651   Internet Programming - Basics of HTML, HTML5, CSS
CS8651 Internet Programming - Basics of HTML, HTML5, CSS
Vigneshkumar Ponnusamy
 
Java CRUD Mechanism with SQL Server Database
Java CRUD Mechanism with SQL Server DatabaseJava CRUD Mechanism with SQL Server Database
Java CRUD Mechanism with SQL Server Database
Dudy Ali
 
Lp 2
Lp 2Lp 2
Concurrency control
Concurrency controlConcurrency control
Concurrency control
Subhasish Pati
 
2.3 bayesian classification
2.3 bayesian classification2.3 bayesian classification
2.3 bayesian classification
Krish_ver2
 
Make web Magical with framer-motion
Make web Magical with framer-motionMake web Magical with framer-motion
Make web Magical with framer-motion
Abderraouf GATTAL
 
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
Mumbai B.Sc.IT Study
 
File systems versus a dbms
File systems versus a dbmsFile systems versus a dbms
File systems versus a dbms
RituBhargava7
 
Database structure
Database structureDatabase structure
Database structure
Forrester High School
 
Asp.NET Validation controls
Asp.NET Validation controlsAsp.NET Validation controls
Asp.NET Validation controls
Guddu gupta
 
Introduction to Apache Hive
Introduction to Apache HiveIntroduction to Apache Hive
Introduction to Apache Hive
Avkash Chauhan
 
Concurrency Control in Database Management System
Concurrency Control in Database Management SystemConcurrency Control in Database Management System
Concurrency Control in Database Management System
Janki Shah
 
Webservices
WebservicesWebservices
Webservices
Gerard Sylvester
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NET
Rajkumarsoy
 
Schema Integration, View Integration and Database Integration, ER Model & Dia...
Schema Integration, View Integration and Database Integration, ER Model & Dia...Schema Integration, View Integration and Database Integration, ER Model & Dia...
Schema Integration, View Integration and Database Integration, ER Model & Dia...
Mobarok Hossen
 
ER model to Relational model mapping
ER model to Relational model mappingER model to Relational model mapping
ER model to Relational model mapping
Shubham Saini
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
priya Nithya
 
Data Mining: Association Rules Basics
Data Mining: Association Rules BasicsData Mining: Association Rules Basics
Data Mining: Association Rules Basics
Benazir Income Support Program (BISP)
 
String operation
String operationString operation
String operation
Shakila Mahjabin
 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial en
forkgrown
 

What's hot (20)

CS8651 Internet Programming - Basics of HTML, HTML5, CSS
CS8651   Internet Programming - Basics of HTML, HTML5, CSSCS8651   Internet Programming - Basics of HTML, HTML5, CSS
CS8651 Internet Programming - Basics of HTML, HTML5, CSS
 
Java CRUD Mechanism with SQL Server Database
Java CRUD Mechanism with SQL Server DatabaseJava CRUD Mechanism with SQL Server Database
Java CRUD Mechanism with SQL Server Database
 
Lp 2
Lp 2Lp 2
Lp 2
 
Concurrency control
Concurrency controlConcurrency control
Concurrency control
 
2.3 bayesian classification
2.3 bayesian classification2.3 bayesian classification
2.3 bayesian classification
 
Make web Magical with framer-motion
Make web Magical with framer-motionMake web Magical with framer-motion
Make web Magical with framer-motion
 
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
Web Programming (Question Paper) [April – 2017 | 75:25 Pattern]
 
File systems versus a dbms
File systems versus a dbmsFile systems versus a dbms
File systems versus a dbms
 
Database structure
Database structureDatabase structure
Database structure
 
Asp.NET Validation controls
Asp.NET Validation controlsAsp.NET Validation controls
Asp.NET Validation controls
 
Introduction to Apache Hive
Introduction to Apache HiveIntroduction to Apache Hive
Introduction to Apache Hive
 
Concurrency Control in Database Management System
Concurrency Control in Database Management SystemConcurrency Control in Database Management System
Concurrency Control in Database Management System
 
Webservices
WebservicesWebservices
Webservices
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NET
 
Schema Integration, View Integration and Database Integration, ER Model & Dia...
Schema Integration, View Integration and Database Integration, ER Model & Dia...Schema Integration, View Integration and Database Integration, ER Model & Dia...
Schema Integration, View Integration and Database Integration, ER Model & Dia...
 
ER model to Relational model mapping
ER model to Relational model mappingER model to Relational model mapping
ER model to Relational model mapping
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
Data Mining: Association Rules Basics
Data Mining: Association Rules BasicsData Mining: Association Rules Basics
Data Mining: Association Rules Basics
 
String operation
String operationString operation
String operation
 
Crud tutorial en
Crud tutorial enCrud tutorial en
Crud tutorial en
 

Viewers also liked

Vertica-Database
Vertica-DatabaseVertica-Database
Vertica-Database
Chakraborty Navin
 
HP Vertica basics
HP Vertica basicsHP Vertica basics
HP Vertica basics
Vijayananda Mohire
 
Vertica loading best practices
Vertica loading best practicesVertica loading best practices
Vertica loading best practices
Zvika Gutkin
 
Introduction to Vertica (Architecture & More)
Introduction to Vertica (Architecture & More)Introduction to Vertica (Architecture & More)
Introduction to Vertica (Architecture & More)
LivePerson
 
Vertica
VerticaVertica
Vertica
Brian Stien
 
A short introduction to Vertica
A short introduction to VerticaA short introduction to Vertica
A short introduction to Vertica
Tommi Siivola
 
Описание архитектуры СУБД HP Vertica
Описание архитектуры СУБД HP VerticaОписание архитектуры СУБД HP Vertica
Описание архитектуры СУБД HP Vertica
Andrey Karpov
 
Vertica the convertro way
Vertica   the convertro wayVertica   the convertro way
Vertica the convertro way
Zvika Gutkin
 
Optimize Your Vertica Data Management Infrastructure
Optimize Your Vertica Data Management InfrastructureOptimize Your Vertica Data Management Infrastructure
Optimize Your Vertica Data Management Infrastructure
Imanis Data
 
Vertica finalist interview
Vertica finalist interviewVertica finalist interview
Vertica finalist interview
MITX
 
Vertica
VerticaVertica
Vertica mpp columnar dbms
Vertica mpp columnar dbmsVertica mpp columnar dbms
Vertica mpp columnar dbms
Zvika Gutkin
 
Vertica 7.0 Architecture Overview
Vertica 7.0 Architecture OverviewVertica 7.0 Architecture Overview
Vertica 7.0 Architecture Overview
Andrey Karpov
 
Bridging Structured and Unstructred Data with Apache Hadoop and Vertica
Bridging Structured and Unstructred Data with Apache Hadoop and VerticaBridging Structured and Unstructred Data with Apache Hadoop and Vertica
Bridging Structured and Unstructred Data with Apache Hadoop and Vertica
Steve Watt
 
Vertica
VerticaVertica
Vertica
Samchu Li
 
Bases de Datos Analiticas-Columnares
Bases de Datos Analiticas-ColumnaresBases de Datos Analiticas-Columnares
Bases de Datos Analiticas-Columnares
Stratebi
 
HPE Vertica Chile Desayuno Oct 2016
HPE Vertica Chile Desayuno Oct 2016HPE Vertica Chile Desayuno Oct 2016
HPE Vertica Chile Desayuno Oct 2016
Analytics10
 
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
Data Con LA
 
Hadoop World Vertica
Hadoop World VerticaHadoop World Vertica
Hadoop World Vertica
Omer Trajman
 
Hortonworks and HP Vertica Webinar
Hortonworks and HP Vertica WebinarHortonworks and HP Vertica Webinar
Hortonworks and HP Vertica Webinar
Hortonworks
 

Viewers also liked (20)

Vertica-Database
Vertica-DatabaseVertica-Database
Vertica-Database
 
HP Vertica basics
HP Vertica basicsHP Vertica basics
HP Vertica basics
 
Vertica loading best practices
Vertica loading best practicesVertica loading best practices
Vertica loading best practices
 
Introduction to Vertica (Architecture & More)
Introduction to Vertica (Architecture & More)Introduction to Vertica (Architecture & More)
Introduction to Vertica (Architecture & More)
 
Vertica
VerticaVertica
Vertica
 
A short introduction to Vertica
A short introduction to VerticaA short introduction to Vertica
A short introduction to Vertica
 
Описание архитектуры СУБД HP Vertica
Описание архитектуры СУБД HP VerticaОписание архитектуры СУБД HP Vertica
Описание архитектуры СУБД HP Vertica
 
Vertica the convertro way
Vertica   the convertro wayVertica   the convertro way
Vertica the convertro way
 
Optimize Your Vertica Data Management Infrastructure
Optimize Your Vertica Data Management InfrastructureOptimize Your Vertica Data Management Infrastructure
Optimize Your Vertica Data Management Infrastructure
 
Vertica finalist interview
Vertica finalist interviewVertica finalist interview
Vertica finalist interview
 
Vertica
VerticaVertica
Vertica
 
Vertica mpp columnar dbms
Vertica mpp columnar dbmsVertica mpp columnar dbms
Vertica mpp columnar dbms
 
Vertica 7.0 Architecture Overview
Vertica 7.0 Architecture OverviewVertica 7.0 Architecture Overview
Vertica 7.0 Architecture Overview
 
Bridging Structured and Unstructred Data with Apache Hadoop and Vertica
Bridging Structured and Unstructred Data with Apache Hadoop and VerticaBridging Structured and Unstructred Data with Apache Hadoop and Vertica
Bridging Structured and Unstructred Data with Apache Hadoop and Vertica
 
Vertica
VerticaVertica
Vertica
 
Bases de Datos Analiticas-Columnares
Bases de Datos Analiticas-ColumnaresBases de Datos Analiticas-Columnares
Bases de Datos Analiticas-Columnares
 
HPE Vertica Chile Desayuno Oct 2016
HPE Vertica Chile Desayuno Oct 2016HPE Vertica Chile Desayuno Oct 2016
HPE Vertica Chile Desayuno Oct 2016
 
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
Big Data Day LA 2015 - Scalable and High-Performance Analytics with Distribut...
 
Hadoop World Vertica
Hadoop World VerticaHadoop World Vertica
Hadoop World Vertica
 
Hortonworks and HP Vertica Webinar
Hortonworks and HP Vertica WebinarHortonworks and HP Vertica Webinar
Hortonworks and HP Vertica Webinar
 

Similar to How to install Vertica in a single node.

Kioptrix 2014 5
Kioptrix 2014 5Kioptrix 2014 5
Kioptrix 2014 5
Jayesh Patel
 
John
JohnJohn
Database Security Explained
Database Security ExplainedDatabase Security Explained
Database Security Explained
wensheng wei
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
guest954945a
 
Kl 031.30 eng_class_setup_guide_1.2
Kl 031.30 eng_class_setup_guide_1.2Kl 031.30 eng_class_setup_guide_1.2
Kl 031.30 eng_class_setup_guide_1.2
Freddy Ortiz
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
guest954945a
 
Web375 course project web architecture plan for the de vry daily tribune new...
Web375 course project  web architecture plan for the de vry daily tribune new...Web375 course project  web architecture plan for the de vry daily tribune new...
Web375 course project web architecture plan for the de vry daily tribune new...
bestwriter
 
New_RESUME
New_RESUMENew_RESUME
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
Blue Medora
 
Apache Kafka - Strakin Technologies Pvt Ltd
Apache Kafka - Strakin Technologies Pvt LtdApache Kafka - Strakin Technologies Pvt Ltd
Apache Kafka - Strakin Technologies Pvt Ltd
Strakin Technologies Pvt Ltd
 
Nt1330 Unit 1
Nt1330 Unit 1Nt1330 Unit 1
Nt1330 Unit 1
Jenny Calhoon
 
Dru lavigne servers-tutorial
Dru lavigne servers-tutorialDru lavigne servers-tutorial
Dru lavigne servers-tutorial
Dru Lavigne
 
Free tools for win server administration
Free tools for win server administrationFree tools for win server administration
Free tools for win server administration
Concentrated Technology
 
Freeradius edir
Freeradius edirFreeradius edir
Freeradius edir
Jonas Segovia Velazquez
 
Team lab install_en
Team lab install_enTeam lab install_en
Team lab install_en
patriotaguate
 
DirectShare Quick Start Setup Guide
DirectShare Quick Start Setup GuideDirectShare Quick Start Setup Guide
DirectShare Quick Start Setup Guide
Christian Petrou
 
Rt2870 Software Release Note For Windows Ce
Rt2870 Software Release Note For Windows CeRt2870 Software Release Note For Windows Ce
Rt2870 Software Release Note For Windows Ce
guesta5887e6b
 
Bsd routers
Bsd routersBsd routers
Bsd routers
HARRY CHAN PUTRA
 
Building a Gateway Server
Building a Gateway ServerBuilding a Gateway Server
Building a Gateway Server
Dashamir Hoxha
 
Pvs slide
Pvs slidePvs slide
Pvs slide
Mohit Gupta
 

Similar to How to install Vertica in a single node. (20)

Kioptrix 2014 5
Kioptrix 2014 5Kioptrix 2014 5
Kioptrix 2014 5
 
John
JohnJohn
John
 
Database Security Explained
Database Security ExplainedDatabase Security Explained
Database Security Explained
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
 
Kl 031.30 eng_class_setup_guide_1.2
Kl 031.30 eng_class_setup_guide_1.2Kl 031.30 eng_class_setup_guide_1.2
Kl 031.30 eng_class_setup_guide_1.2
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
 
Web375 course project web architecture plan for the de vry daily tribune new...
Web375 course project  web architecture plan for the de vry daily tribune new...Web375 course project  web architecture plan for the de vry daily tribune new...
Web375 course project web architecture plan for the de vry daily tribune new...
 
New_RESUME
New_RESUMENew_RESUME
New_RESUME
 
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
vRealize Operations (vROps) Management Pack for Citrix XenDesktop Installatio...
 
Apache Kafka - Strakin Technologies Pvt Ltd
Apache Kafka - Strakin Technologies Pvt LtdApache Kafka - Strakin Technologies Pvt Ltd
Apache Kafka - Strakin Technologies Pvt Ltd
 
Nt1330 Unit 1
Nt1330 Unit 1Nt1330 Unit 1
Nt1330 Unit 1
 
Dru lavigne servers-tutorial
Dru lavigne servers-tutorialDru lavigne servers-tutorial
Dru lavigne servers-tutorial
 
Free tools for win server administration
Free tools for win server administrationFree tools for win server administration
Free tools for win server administration
 
Freeradius edir
Freeradius edirFreeradius edir
Freeradius edir
 
Team lab install_en
Team lab install_enTeam lab install_en
Team lab install_en
 
DirectShare Quick Start Setup Guide
DirectShare Quick Start Setup GuideDirectShare Quick Start Setup Guide
DirectShare Quick Start Setup Guide
 
Rt2870 Software Release Note For Windows Ce
Rt2870 Software Release Note For Windows CeRt2870 Software Release Note For Windows Ce
Rt2870 Software Release Note For Windows Ce
 
Bsd routers
Bsd routersBsd routers
Bsd routers
 
Building a Gateway Server
Building a Gateway ServerBuilding a Gateway Server
Building a Gateway Server
 
Pvs slide
Pvs slidePvs slide
Pvs slide
 

Recently uploaded

PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
SOFTTECHHUB
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
Claudio Di Ciccio
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Zilliz
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 

Recently uploaded (20)

PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 

How to install Vertica in a single node.

  • 1. Vertica | Vertica Management console | Tableau How to install Vertica in a single node. Microsoft Excel | Power Query | Power View Anil Maharjan
  • 2. Page | 2 Install Vertica in a single node. This article is mainly related: 1. Setup of Vertica in a single node. 2. Vertica Console Management 3. Tableau 4. DBeaver During my free time, I want to try to install Vertica and want to know what it is all about. what are the things we should know while installing Vertica and what will be the issues, difficulties, requirements and process do we need to follow in order to setup Vertica and play around it. The HP Vertica Analytic Database is based on a massively parallel processing (MPP), shared-nothing architecture, in which the query processing workload is divided among all nodes of the Vertica database. If you want to try Vertica and play around along with this columnar database then you should follow below steps. Step 1: Firstly you should have any Linux OS installed in a machine. For Vertica, the minimum requirement is to have 3 nodes that mean’s three Linux OS running in different nodes. But, in my case I want to try to install in only one node and try it out. I have windows 7 OS install and where I have install Red hat Linux in my virtual machine. So, make sure you have at least one Linux OS installed machine. You may find the below link to find out the minimum requirements and server configuration: http://my.vertica.com/docs/5.1.6/HTML/index.htm#18671.htm General Platform Recommendations  ext4 is recommended over ext3 for performance reasons.  Use 2GB of swap space regardless of the amount of installed RAM.  Place the database /catalog directory on the same drive as the OS. Step 2: Download all the required software related to Vertica from the site https://my.vertica.com/downloads/ In order to download you can sign up in a community edition. All the stuffs you can know from below video: http://www.vertica.com/files/myVerticaVideo/myVertica_Audio_Video_Combined_121009J.html Here, I have downloaded the below versions:
  • 3. Page | 3 Step 3: After that move the setup files into Red Hat Linux virtual machine directory. I have put the setup files into directory as /data/software and then open the terminal in VM, Run the below command as root user: rpm -Uvh /data/Software/vertica-7.0.2-1.x86_64.RHEL5.rpm Then after that it will ask to run the /opt/vertica/sbin/install_vertica to complete the installation. Step 4: Run the script in master node # /opt/vertica/sbin/install_vertica -s host_list -r rpm_package -u dba_username
  • 4. Page | 4 Here I used only one node so below is my script. /opt/vertica/sbin/install_vertica -s localhost -r /data/Software/vertica-7.0.2-1.x86_64.RHEL5.rpm - u dbadmin Here, you need to note that if you want to install Vertica in multiple nodes then you can include different nodes or host list. Where options are: -s host_list comma-separated list of hostnames or IP addresses to include in the cluster; do not include space characters in the list. 1. -r "vertica_6.0.x.x86_64.RHEL5.rpm" 2. -u dbadmin user name 3. -p dbadmin passowrd 4. -P root password 5. -L location of the license 6. -d where data will be located 7. -s nodes that will be part of the cluster 8. -r location of the installation rpm -- If you omit the -u parameter, the default database administrator account name is dbadmin who will only use the admintools. You can find more about installing vertica in 3nodes or complete cluster Installation in below link: http://www.aodba.com/main_articles_single.php?art=83&page=vertica
  • 5. Page | 5 Step5: After that you will get some issues or errors as below which I have got >> Validating node and cluster prerequisites... Failures during local (OS) configuration for verify-127.0.0.1.xml: HINT (S0305): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0305 TZ is unset for dbadmin. Consider updating .profile or .bashrc HINT (S0041): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0041 Could not find the following tools normally provided by the mcelog package: mcelog HINT (S0040): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0040 Could not find the following tools normally provided by the pstack or gstack package: pstack/gstack WARN (N0010): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=N0010 Linux iptables (firewall) has some non-trivial rules in tables: filter FAIL (S0150): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0150 These disks do not have 'deadline' or 'noop' IO scheduling: '/dev/sda1' ('sda') = 'cfq', '/dev/sda3' ('sda') = 'cfq' FAIL (S0020): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0020 Readahead size of sda (/dev/sda1,/dev/sda3) is too low for typical systems: 256 < 2048 FAIL (S0030): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0030 ntpd process is not running: ['ntpd', 'ntp'] FAIL (S0081): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0081 SELinux appears to be enabled and not in permissive mode. FAIL (S0310): https://my.vertica.com/docs/7.0.x/HTML/index.htm#cshid=S0310 Transparent hugepages is set to 'always'. Must be 'never' or 'madvise'. Then go through each error in the link below https://community.vertica.com/vertica/topics/ This is all about some cluster prerequisites. Here go through each FAIL(XXXX) in the community forum where you will get the solution for each error. Step 6: After that, run the admintools from the dbadmin user then you can see as
  • 6. Page | 6 After that create the database: Then choose the host name where database will reside:
  • 7. Page | 7 Then, define the Catalog location and data path
  • 8. Page | 8 Since I have installed Vertica in a single node so there will not be the concept of K-Safe method. If we are installing at least 3nodes then we can have k-safe. After that,
  • 9. Page | 9 Then create Vertica database as Vertica_DB in a single node. After that the database will created.
  • 10. Page | 10 Just click OK and you will see the Database configuration: Then finally you can exit from the admintools:
  • 11. Page | 11 Step 7: Vertica management console: After successful installation of Vertica Database now you can install the Vertica management console: The new HP Vertica Management Console is an enterprise database management tool that provides a unified view of your HP Vertica database and lets you monitor multiple clusters from a single point of access. You can find more on below link: https://my.vertica.com/docs/5.1.6/HTML/index.htm#16773.htm Run the command as a root user: rpm –Uvh vertica-console-7.0.2-1.x86_64.RHEL5.rpm After successful installation it will show URL as https://localhost.localdomain:5450/webui during the installation. Just go through the URL and accept the license.
  • 12. Page | 12 Then configure the necessary username, password, UNIX group id:
  • 13. Page | 13 After that you will get the authentication configure page where you can select the LDAP or Management console. Then you will see as
  • 14. Page | 14 After then you can login or access along with the username which you had configured in console management. After successful login you can see HP Vertica Management Console, where you can monitor multiple clusters from a single point of access.
  • 15. Page | 15 Then you can see the running database and cluster along with all nodes. Since I have only one node so here we can see only one node.
  • 16. Page | 16 So finally you can see the database health thorough the console management. Also, you can login to console management from anywhere just you change the localhost to the Host IP address where you have installed console management. What you can do with Management Console  Create a database cluster on hosts that do not have HP Vertica installed  Create, import, and monitor multiple HP Vertica databases on one or more clusters from a single point of control  Create MC users and grant them access to MC and MC-managed databases  Manage user information and monitor their activity on MC  Configure database parameters and user settings dynamically  Access a single message box of alerts for all managed databases  Export all database messages or log/query details to a file  View license usage and conformance  Diagnose and resolve MC-related issues through a browser  Access a quick link to recent databases and clusters  View dynamic metrics about your database cluster The features is so much helpful for the DBA’s and the developer from where they can easily monitor multiple HP Vertica databases on one or more clusters from a single point of control.
  • 17. Page | 17 Tableau: Tableau can help anyone see and understand their data. Connect to almost any database, drag and drop to create visualizations, and share with a click. To know the story behind your data which is stored in Vertica DB, you need to have a reporting tool which can make a quick decision and helps you to get the value of your data. This is where Tableau can be used. Which is one of the best Reporting Tool I must say. One can go to Tableau portal and download the software and play around any database, Worksheets, excel files and so many other data files. I have downloaded both desktop and public version of Tableau, and where as desktop version works for 15 days trail. Now in order to connect Vertica DB through Tableau you need to install the Vertica client in your PC i.e. my windows 7 machine, where you need to download the vertica-client-7.0.2-1.64 from https://my.vertica.com/ Also, you can install the test db along with Vertica as VMART schema but in my case I am getting error so I have posted into Vertica community .One can join this community and can share ideas and issues. https://community.vertica.com/vertica/topics/cannot-create-vmart-example-db After that you can open tableau desktop and connect to Vertica DB in order to play around with and to find the story behind your data.
  • 18. Page | 18 Also, you can have public tableau install in your PC and do some analysis using different worksheets, I have also done some analysis related to ‘Average Percentage of Internet Users across the World ‘ and published into public server which is free that Tableau providing for normal users. https://public.tableausoftware.com/views/AveragePercentageofInternetUsersaccrostheWorld/AverageofIndividualsUsingtheInternet?:showVizHome=no#1 DBeaver: DBeaver is free and open source (GPL) universal database tool for developers and database administrators.  Usability is the main goal of this project, program UI is carefully designed and implemented.  It is freeware.  It is multiplatform.  It is based on opensource framework and allows writing of various extensions (plugins).  It supports any database having a JDBC driver.  It may handle any external datasource which may or may not have a JDBC driver.  There is a set of plugins for certain databases (MySQL and Oracle in version 1.x) and different database management utilities (e.g. ERD You can find more from the link : http://dbeaver.jkiss.org/about/
  • 19. Page | 19 I just found this tool so easy to connect with Vertica DB and do some queries analysis. Summary: Through this article, I am sure you are now able to understand how you can install Vertica Analytical Database in a single node and how you can use Vertica Management Console to monitor multiple clusters from a single point of access. How you can easily get the story behind your data in Vertica DB by using the Tableau Reporting tool. Also, how you can use quires to do more detail analysis by using the DBeaver tool in Vertica Database.
  • 20. Page | 20 Anil Maharjan Highly motivated Business Intelligence Engineer having leadership abilities and team work skills as well as the ability to accomplish tasks under minimal direction and supervision. Has more than 4 years of development & implementation experience in HealthCare Data Analytics, Telecommunication Software Industry. Public speaker in the local SQL Server users group & community, nominated as local speaker for SQL Saturday#180 and a program committee member of Professional Association for SQL Server (PASS) Summit 2014 Program Committee for the ‘BI Platform Architecture, Development & Administration Team’. Blog site: http://anilmaharjanonbi.wordpress.com http://bidn.com/blogs/anil Personal site: http://maharjananil.com.np Twitter: @Anil_Maharjan Linked-in: http://np.linkedin.com/in/maharjananil Slideshare: http://www.slideshare.net/anil_maharjan/presentations Email: anil_pas@hotmail.com