Advanced features
Collations
Collations define the rules for how string data is sorted and compared in a database. They determine the order of characters, case sensitivity, and accent sensitivity, which can vary based on language and locale. By specifying a collation, you can ensure that text data is handled in a way that aligns with the linguistic and cultural expectations of your users. Collations are essential for accurate sorting and searching of text data.
Cursors
Cursors are database objects used to retrieve, manipulate, and navigate through a result set row by row. Cursors allow you to fetch rows sequentially, move to specific rows, and perform updates or deletions on the current row. While powerful, cursors should be used judiciously, as they can be resource-intensive and may impact performance if not managed properly.
Foreign data wrappers
Foreign data wrappers (FDWs) allow YugabyteDB to access and interact with external data sources as if they were local tables. This capability enables seamless integration of diverse data sources, such as other databases, files, or web services, into your SQL queries. FDWs provide a standardized way to query and manipulate external data, making it easier to combine and analyze information from multiple systems.
Savepoint
Savepoints are markers in a transaction that allow you to roll back part of the transaction without affecting the entire transaction. They are particularly useful in long transactions where multiple operations are performed, as they enable finer control over the transaction's execution and help maintain data integrity by allowing partial rollbacks.
Stored procedures
Stored procedures are precompiled collections of SQL statements and optional control-of-flow statements, stored on the server side. They allow you to encapsulate complex business logic and database operations into reusable scripts that can be executed with a single call. Stored procedures enhance performance by reducing the amount of information sent between the client and server.
Table partitioning
Table partitioning is a database optimization technique that divides a large table into smaller, more manageable pieces called partitions. Each partition can be managed and accessed independently, which can significantly improve query performance and simplify maintenance tasks. Partitioning can be based on various criteria, such as ranges of values, lists of values, or hash functions.
Triggers
Triggers are special types of stored procedures that automatically execute in response to certain events on a table or view. These events can include insertions, updates, or deletions of data. Triggers are used to enforce business rules, maintain data integrity, and automate system tasks. By defining triggers, you can ensure that specific actions are taken automatically when certain conditions are met, such as logging changes, validating data, or updating related tables.
Views
Views are virtual tables that present a customized view of data from underlying tables. They are defined by a SELECT statement and can be used to simplify complex queries, restrict access to certain data, or provide a more user-friendly interface.