@代表远程连接 (DB LINK),
select * from test@DB_Source; 
这里test代表table, DB_Source代表DB LINK.%代表属性,
比如列的属性: test.col1%type,就是取test表中col1这列的类型;
比如行的属性: test%rowtype,就是取test表中行的类型;
还有cursor的属性, vArray的属性, nested table的属性, 很多~