Hi all
I have several questions for sqlite experts about checking bd data for sqlite:
1) Which sqlite command should I use to find out how many columns of data does have one table inside a db?
2) Which sqlite command could I use to find out how many tables could have inside a database?
3) How many rows does correspond (since I read somewhere in internet...) his iimit data size of 140 TB (theoretically said)?
4) Can two separated tables but both included in a same and single database file be intercommunicated with sqlite commands? I mean, could 2 tables parse data or get data from them to another third virtual table by using join command?
5) As for the first and second questions, which command could I use to set the size parameters about db, row and column sizes? Pragma could be the correct command?
6) How can I avoid fragmentation data when many rows or data are being deleted in process to get fast loading data?
I have several questions for sqlite experts about checking bd data for sqlite:
1) Which sqlite command should I use to find out how many columns of data does have one table inside a db?
2) Which sqlite command could I use to find out how many tables could have inside a database?
3) How many rows does correspond (since I read somewhere in internet...) his iimit data size of 140 TB (theoretically said)?
4) Can two separated tables but both included in a same and single database file be intercommunicated with sqlite commands? I mean, could 2 tables parse data or get data from them to another third virtual table by using join command?
5) As for the first and second questions, which command could I use to set the size parameters about db, row and column sizes? Pragma could be the correct command?
6) How can I avoid fragmentation data when many rows or data are being deleted in process to get fast loading data?
Comment