`
475900947
  • 浏览: 17144 次
社区版块
存档分类
最新评论
文章列表

postgresql show databases

    博客分类:
  • sql
mysql:show databases pgsql:\l 或者\l+(显示的信息要多一些) mysql:use xx pgsql:\c xx mysql:show tables pgsql:\dt
<html> <head> <script type="text/javascript"> var isIE = /msie/i.test(navigator.userAgent) && !window.opera; function fileChange(target) { var fileSize = 0; if (isIE && !target.files) { ...
java设置session超时时间 ///超时时间设置为10分钟, session.setMaxInactiveInterval(10 * 60); session.setAttribute("interval", session.getMaxInactiveInterval());     web.xml设置session超时时间 <session-config> <!-- 以分钟为单位 --> <session-timeout>10</session-timeout> ...
SqlServer查询锁表 --查询出死锁的SPID select blocked from (select * from sysprocesses where blocked>0 ) a where not exists(select * from (select * from sysprocesses where blocked>0 ) b where a.blocked=spid) --输出引起死锁的操作 DBCC INPUTBUFFER (@spid) --查询当前进程数 select count(-1) from sysprocesses ...
vncserver -kill :1 vncserver :1 如果出现文件被锁情况可以 rm -f 文件
比如俩用户表,一个A一个B,但是这俩都有两个字段 A表示id1、name1;B表示id2,name2,我想查询出俩两个表,别名是id和name select hth,dh from yhdang20110326 union all select hth,dh from yhdang
str.replace(new RegExp("word","gm"),"Excel"); 原值:   str = 'word1word2'; 当前值:str = 'Excel1Excel2';
web.xml添加内容: <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> ...
//判断系统 public String checkSys(){ stmt = conn.createStatement(); String os =System.getProperty("os.name"); if(os.startsWith("win") || os.startsWith("Win")){ mac = getMacAdr(ip); }else{ mac = getMacAdrLinux(ip); } return mac ...
$("input[@type=radio][name='inDetec_status'][checked]").val();
timestamp转换成character格式 to_char(now(),'yyyy-MM-dd HH24:mm:ss') character转换成timestamp格式 timestamp'1999-01-01 00:00:00'
1.INSERT INTO SELECT语句       语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1       要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量。   2/SELECT INTO FROM语句         语句形式为:SELECT vale1, value2 into Table2 from Table1         要求目标表Table2不存在,因为在插入时会自 ...
import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.methods.InputStreamRequestEntity; import org.apache.commons.httpclient.methods.PutMethod; import org.apache.commons.httpclient.methods.RequestEntity; //通过java发送http请求 //data可以是xml格式 private static String sendReques ...
Global site tag (gtag.js) - Google Analytics