Search found 36 matches

by doug_harmon
Tue Jan 28, 2014 5:17 pm
Forum: Vertica Database Administration
Topic: Dropping schema created by database designer
Replies: 2
Views: 7742

Re: Dropping schema created by database designer

Try this for Vertica v6.

Code: Select all

select dbd_drop_all_workspaces('DESIGNER');
by doug_harmon
Thu Oct 24, 2013 2:21 pm
Forum: Vertica Database Administration
Topic: Restoring a table to previous state
Replies: 3
Views: 6462

Re: Restoring a table to previous state

There's an [ AT TIME 'timestamp' ] prefix for the select statement that can show what the data in a table looked like at a previous point in time.
https://my.vertica.com/docs/6.1.x/HTML/ ... tm#689.htm

I'm assuming this stops working once history for that epoch has been purged.
by doug_harmon
Wed Oct 09, 2013 4:33 am
Forum: Vertica Performance Tuning
Topic: Presentation on Performance Tuning
Replies: 8
Views: 35538

Presentation on Performance Tuning

Found here: http://hp-vertica.com/hp-vertica-advanc ... -training/

Click on the red button labelled "Performance Tuning Exercises".

HP included the presentation in the zip file.
by doug_harmon
Tue Sep 03, 2013 3:17 pm
Forum: Vertica Database Administration
Topic: Large deletes from two tables
Replies: 13
Views: 23541

Re: Large deletes from two tables

Here's an example of how to do partitioning.

http://www.vertica-forums.com/viewtopic.php?f=63&t=1113
by doug_harmon
Fri Jun 28, 2013 6:39 pm
Forum: New to Vertica Database Administration
Topic: CPU frequency scaling
Replies: 3
Views: 9447

Re: CPU frequency scaling

Run this for an assessment of what your CPU's are capable of compared to their actual performance. If the cpu_frequency_mhz is lower than what the specs are calling for then you'll want to talk to your linux admin about disabling CPU frequency scaling. select node_name, processor_id, model_name, cpu...
by doug_harmon
Wed Jun 12, 2013 10:41 pm
Forum: Vertica Tips, Lessons and Examples
Topic: Partition Swapping
Replies: 2
Views: 23571

Partition Swapping

Partition swapping is a common technique for loading data into tables. Typically you will load data into a stage table, then swap the stage table into a partition in the destination table. For large tables this is much faster than a merge, with downtime measured in seconds. Here's what I learned: 1....

Go to advanced search