This content has been marked as final.
Show 1 reply
-
1. Re: Could you give me a hand
rareddy Jul 16, 2013 8:02 AM (in response to robin622091)Wei,
Not sure what your question is? *.xmi files are in the Teiid Designer and they are model files that provide metadata to form the VDB. In other words they provide the schema details of the VDB, and has nothing to do with the data. To limit the data from your queries, you can use LIMIT clause like
{code:lang=SQL}
Select * from Customer LIMIT 10;
{code}
Ramesh..