在使用sqldeveloper连接TimesTen一直报[TimesTen][TimesTen 11.2.2.8.0 ODBC Driver][TimesTen]TT7001: User authentication failed -- file "db.c", lineno 9800, procedure "sbDbConnect",
但使用sqldeveloper创建的用户已经给过权限了,但还是连接不上。
解决办法:
1、连接tt:
ttisql [DSN];
2、创建用户:
create user sjh identified by ‘sjh’;
3、赋权
grant admin to sjh;
tt命令以分号;结尾。