遇到的问题一: xxx is not in the sudoers file.This incident will be reported.的解决方法 1.切换到root用户下,怎么切换就不用说了吧,不会的自己百度去. 2.添加sudo文件的写权限,命令是: chmod u+w /etc/sudoers 3.编辑sudoers文件 vi /etc/sudoers 找到这行 root ALL=(ALL) ALL,在他下面添加xxx ALL=(ALL) ALL (这里的xxx是你的用户名) ps:这…
一对多:一对一 # one -- many class Students(Base): __tablename__ = "students" sid = Column(Integer, primary_key=True) name = Column(String(30)) age = Column(Integer) tid = Column(Integer, ForeignKey("teachers.tid")) # 声明字段值受到另一个表的字段值得约束,注意是&l…
select * from TEST3 t select object_type, count(object_type) from user_objects group by object_type order by object_type select table_name from dba_tables where lower(table_name) = 'tf_dev' --7-1 确定会话可以访问那些对象. -- 7-1-1 确定模式中各种类型的对象 列出所有对象 select obje…