why is the result of my fetch not complete in database?

4 views (last 30 days)
I am trying to load some data from a database using matlab. for that i have written my SQL-query and connected to my database and so on.
when asking for the number of raws obtained from the selected search SQL-Query (Using the SELECT COUNT(*) query) i am getting num_rows = 63591 which is correct and i do expect. yet when afterword i use the 'exec-function' to the same SQL-search query, followed by the 'fetch-function' i am not getting the expected number of rows given by num_raws.
can anyone help me out here? what am I doning wrong?
Best Regards
  2 Comments
Sanjana Ramakrishnan
Sanjana Ramakrishnan on 12 Dec 2016
Since the size of the dataset is huge, 'fetch' command may not have retrieved all the rows. This can be resolved by setting database preferences, to fetch large dataset as below:
1. Execute the below automate fetching in batches for large datasets: >>setdbprefs('FetchInBatches','yes')
2. Execute the below command to import data in batches of size '1000' >>setdbprefs('FetchInBatches','1000')
The above commands would enable importing of large datasets in batches of 1000.
Please refer the below links for more information
Aubai
Aubai on 17 Jan 2017
Thx Very much that did help and sorry for the late replay.

Sign in to comment.

Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!