摘要:
1、oracle 11g 用户名和密码默认区分大小写,可更改alter system set sec_case_sensitive_logon=false 设置改为不区分大小写。 2、授权创建视图:GRANT CREATE VIEW TO 用户; --查看用户和默认表空间的关系select user 阅读全文
摘要:
public List<T> GetRandomList<T>(List<T> inputList){ //Copy to a array T[] copyArray = new T[inputList.Count]; inputList.CopyTo(copyArray); //Add range 阅读全文