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

4 次查看(过去 30 天)
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 个评论
Sanjana Ramakrishnan
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 2017-1-17
Thx Very much that did help and sorry for the late replay.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by