I created COMPREHENSIVE design using a list of 80-85 Queries. Most of them are too big , like 300 - 400 lines each . And most of the Queries has a lot of inner Queries . My Query is that does DBD takes into account the inner Queries too for Projection creation, AS most of the inner Query 's Explain plan does seem to suggest it.
Does Vertica DBD takes Inner Queries into account while configuring Projections?
149 Views Asked by minatverma At
1
There are 1 best solutions below
Related Questions in PROJECTION
- Alloy traces and projection issues
- Projection with single child object
- Must polygon prism have interior angles >144 degree to have sides visible after projection transform?
- Random projection in Python Pandas using a dataframe containing NaN values
- How to correctly leverage Content, Widgets and Layers in Orchard
- Empty references and collections in Projections processing issue
- Using radon function to find black bar position in white background image
- Issue with projection in SpringDataRest and @Lob attribute
- OpenCV to OpenGL perspective projection matrix slight error
- MongoDB: Make a projection to return just the first element of an array nested to another array nested to an object
- OpenGL and C++ projection matrix not working
- Projecting a single record with a static Func<>
- Lambert conic conformal projection in d3
- OpenLayers GeoJson reprojection
- Perspective control in MATLAB 3D figures
Related Questions in VERTICA
- HCatalog Hive: show database error
- Vertica: Input record 1 has been rejected (Too few columns found)
- Vertica: Running manual DBD from Management Console
- Can I integrate a custom PDO wrapper in Laravel
- Copying (Cloning) DB to another Vertica Cluster with Different no. of Nodes and Different IP Addresses
- Update or remove value Vertica
- Efficient way to move data between Oracle and Vertica
- Tableau + Vertica 6 - How to connect Tableau to Vertica 6 on a Windows Server Machine
- SQLException: [Vertica][VJDBC](100161) The connection is closed
- HP Vertica SQL timestamp to number
- R function Failure in UDx RPC call InvokeGetUdxType() Issue
- Insert into in vertica performance tuning
- Vertica. Count of Null and Not-Null of all columns of a Table
- table to table copy command with where condition
- SQL: Select rows that have specfic values, independent from the column
Related Questions in INNER-QUERY
- Inner query not throwing error in postgres
- Does Vertica DBD takes Inner Queries into account while configuring Projections?
- How to implement sub-query in Microstratergy?
- MySQL Sum + Inner Query in same table
- Improve SQL query by replacing inner query
- Error in inner query , where as inner query independently when run dont generate error
- Is there a step in Pentaho Spoon to use a transformation as inner query?
- How to express "either the single resulting record or NULL", without an inner-query LIMIT?
- IN operator with Inner query SQL
- 4D SQL (v15.6): mix of JOINS + WITH clause + INNER queries on FROM, SELECT
- Difference between two identical tables in mysql
- How do I handle exception while converting date
- Update field value of a table with max value of two fields of two other tables
- How to find Last record in group
- inner query in laravel 5.3 query builder
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It does take into account queries with joins, in the sense that it tries to look for a common key. After DBD is finished with the design, it's always a good idea to review the design before deploying.
The best way to optimize for joins is by using primary & foreign keys, and possibly pre-join projections.
Another approach is to look at your actual schema design as the goal should be to have joins to perform locally. You may want to replicate smaller tables or have a single, very large table replicated. This will still allow joins to happen locally.
Some articles which may help in optimizing joins: