How to get MS SQL table names via DB tbx
8 ビュー (過去 30 日間)
古いコメントを表示
Hi I am new in using MS SQL and the DB tbx. Coould anyone tell me how can I get table names in MS SQL using DB tbx? Is there anything similar to MYM for MS SQL? It seems MYM is much user friendly for newbie. Thanks RAY
0 件のコメント
回答 (2 件)
Oleg Komarov
2011 年 8 月 26 日
Otherwise you can use MS SQL JDBC connection to connect to your database (you can find detailed instruction on that page) and after you can simply use database.fetch to retrieve data.
0 件のコメント
Quattro
2011 年 8 月 26 日
If you already have established a database connection:
T=tables(conn)
See for further help
help database.tables
To connect to a database, see
help database
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Database Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!