码迷,mamicode.com
首页 >  
搜索关键字:select from    ( 80461个结果
ORA-28002: the password will expire within 7 days 解决方法(后面部分为拷贝,前面加上了自己遇到的问题的时候解决方案)
首先以管理员密码登录 如果发现仍然登录不进去了,可以将Oracle安装的Linux的系统时间提前,修改方法是: date -s 04/29/2014 date -s 17:52:00 clock -w   1. 查看用户的profile设置: SELECT username,profile FROM dba_users;   SELECT username,profil...
分类:其他好文   时间:2014-07-22 23:03:54    阅读次数:423
poj2421 最小生成树 克鲁斯
Constructing Roads Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 18744   Accepted: 7755 Description There are N villages, which are numbered from 1 to N, and...
分类:其他好文   时间:2014-07-22 23:02:33    阅读次数:221
oracle 简单SQL
1, insert into test select * from test;(造测试数据)2, create table b as select * from a; (创建表结构一样的空表,数据可同上插入数据)3,linux系统下让sqlplus支持历史命令回调在linux中实现上述功能,需要.....
分类:数据库   时间:2014-05-01 21:33:20    阅读次数:447
sql语句的效率测试
1.测试sql语句执行时间的方法,获得时间差declare @end_date datetimeselect @begin_date = getdate()--要执行的sql语句select @end_date = getdate()select datediff(ms,@begin_date,@e...
分类:数据库   时间:2014-05-01 21:11:51    阅读次数:398
HP EliteBook 8770p打开Vt-x
activating vt-x from biosIf you have HP EliteBook 8770w do:Shutdown your mobile workstation.Push startup buttonpush ESC keypush F10 to open BIOS setup...
分类:其他好文   时间:2014-05-01 21:08:36    阅读次数:512
select改变执行操作
function changeBottomTimeScale(value) { gantt.setBottomTimeScale(value)}
分类:其他好文   时间:2014-05-01 21:04:50    阅读次数:349
hdu 1074 Doing Homework
Problem DescriptionIgnatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline o...
分类:其他好文   时间:2014-05-01 20:49:40    阅读次数:563
Remove Duplicates from Sorted Array
没有想通为什么这个简单的问题竟然不是那么简单,太小看它了,以下是两个别人的很不错的solution:Solution1: 1 public class Solution { 2 public int removeDuplicates(int[] A) { 3 // Start...
分类:其他好文   时间:2014-05-01 20:19:26    阅读次数:384
Keyboard input
Keyboard inputPython provides a build-in function called raw_input (in version 2.x) that gets input from the keyboard. In Python 3.x we use input(). W...
分类:其他好文   时间:2014-05-01 19:23:26    阅读次数:392
从MYSQL数据库查出指定格式的日期
1、用SQL语言控制:格式如下:select DATE_FORMAT(t.startTime,"%Y-%m-%d %H:%i") AS startTime,DATE_FORMAT(t.endTime,"%Y-%m-%d %H:%i") AS endTimefrom table输出格式为:YYYY-m...
分类:数据库   时间:2014-05-01 19:04:54    阅读次数:847
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!