2009/09/29

晶片COMBO卡(金融卡信用卡合一),
必須先切換到金融卡AP,才能讀到正確資料,
先執行 Select AID: 00A4040008A00000017295000100
其中 A000000172950001 即是 晶片金融卡的 AID

來源:小紀的天空

2009/09/23

SQLPlus中如何顯示所有Tables
select * from tab where tabtype = 'TABLE';
select table_name from user_tables;

SQLPlus中如何顯示Tables的欄位資料
desc tablename ;