Priyanshi Gupta
Priyanshi Gupta
This PR adds the docs for Vertx PG Client in [build-app](https://docs.yugabyte.com/preview/develop/build-apps/java/ysql-yb-jdbc/) for Java and mentions as supported client drivers in [reference](https://docs.yugabyte.com/preview/reference/drivers/ysql-client-drivers/).
This PR depends on when the Node.js [smart-driver](https://github.com/yugabyte/node-postgres) gets published.
Jira Link: [DB-3596](https://yugabyte.atlassian.net/browse/DB-3596) ### Description We tried to import the data in the table with YB Voyager and experiencing the missing rows on the Database. Input Data we experimented with...
[YSQL] Issue in select count(*) from table which resulting different count when ran multiple times
Jira Link: [DB-3595](https://yugabyte.atlassian.net/browse/DB-3595) ### Description We have observed that once the data is ingested in a table and when we fire the `select count(*) from accounts` on that table multiple...
Jira Link: [DB-3594](https://yugabyte.atlassian.net/browse/DB-3594) ### Description Trying to Import a data file which has 350M rows into a table using the `Copy from` command and getting the below error after some...
### Pull Request Checklist _Please make sure to review and check all of these items:_ - [ ] Have you added new tests to prevent regressions? - [x] Does `yarn...
Hi @darold, I was wondering if there is a way to override all these default encoding parameters (mainly `NLS_TIMESTAMP_FORMAT`) ``` [centos@ip-10-9-14-120 yb-voyager]$ ora2pg -t SHOW_ENCODING -c Current encoding settings that...
Example ```sql stmt := ` CREATE OR REPLACE FUNCTION fetch_film_titles_and_years( OUT p_title VARCHAR(255), OUT p_release_year INTEGER ) RETURNS SETOF RECORD AS $$ DECLARE film_cursor CURSOR FOR SELECT title, release_year FROM...