搜索到与相关的文章
编程技术

今天上班可以放羊

如果你受雇于谷歌,那你只须拿80%的时间用在本职工作上。而另外20%的时间,你可以用来做任何你想做的事情——前提是,你所做的事会以某种方式帮助谷歌进步。至少理论上是这样的。到目前为止,谷歌的20%时间政策在软件开发行业里已经很出名了。不过,大家有所不知的是,如果追溯回去,这个概念其实早在1948年就由3M公司提出了。3M公司的全称是MinnesotaMiningandManufacturing(明尼苏达矿务及制造业公司),创建于1902年,总部设在美国明尼

系统 2019-08-12 09:29:29 2531

各行各业

VIM命令集

CommandActionNotesvimfile+54openfileandgotoline54any:commandcanberunusing+oncommandlinevim-Ofile1file2openfile1andfile2sidebysideInsertenterinsertmodesoyoucanstarttyping.Alternativelyonecanuseiora.Escleaveinsertmodesoyoucanissueco

系统 2019-08-12 09:27:34 2531

各行各业

VS制作的安装包,快捷方式指向错误

VS制作的安装包,快捷方式指向错误分类:安装部署2012-08-2921:41202人阅读评论(0)收藏举报如题:最近的项目中,使用VS2010制作成的安装包在安装后出现了一个奇怪的错误,桌面生成的快捷方式在双击后并没有启动主程序而是启动了安装包,遂在网上搜索,知道了一个解决方法,如下:文章出处:http://charles2008.cnblogs.com/刚刚开发完成的一个Winform项目,使用VS2008自带的打包工具对它进行打包(设置开始菜单的快捷

系统 2019-08-12 09:27:13 2531

各行各业

How to rebuild assemblies from the source co

DescriptionHowcanIrecompiletheXtraGridassemblies?Iwanttostepintoyourcodeandtraceitwhendebuggingmyapplications.SolutionAppliesto:XtraGridandotherDeveloperExpress.NETcomponentsForewordWeofferasetofbuildscriptstoautomatetherebuilding

系统 2019-08-12 09:26:40 2531

Oracle

oracle pl/sql 函数中链表的使用

定义:typet_numberstabistableofnumber;举例:createorreplacefunctiongetbldroomidforcert(p_certidnumber,p_sequencenumber)returnvarchar2istypet_numberstabistableofnumber;v_bldroomidst_numberstab:=t_numberstab();v_cntnumber:=1;beginforbrrsi

系统 2019-08-12 01:54:56 2531

Oracle

oracle 重建 sys密码文件

需要重建密码文件,具体步骤如下:1.首先,确定你的密码文件的路径和名称:在windows下密码文件路径oracle_home\database密码文件名称pwd+sid.ora在unix下密码文件路径oracle_home/dbs密码文件名称pwd+sidSid为实例名称,查看实例名称Selectinstance_namefromv$instance;select'pwd'||instance_name||'.ora'fromv$instance;2.将原

系统 2019-08-12 01:54:31 2531

数据库相关

leetcode------Partition List

标题:PartitionList通过率:27.5%难度:中等Givenalinkedlistandavaluex,partitionitsuchthatallnodeslessthanxcomebeforenodesgreaterthanorequaltox.Youshouldpreservetheoriginalrelativeorderofthenodesineachofthetwopartitions.Forexample,Given1->4->3-

系统 2019-08-12 01:54:22 2531

Oracle

登录oracle时,scott is locked (帐户被锁定)

登录Oracle时,用scott/tiger通常此时会报一个错误:scottislocked(帐户被锁定)现在就要用超级用户system将scott帐户进行解锁。cmd->sqlplus输入用户名:system输入口令:****(安装oracle时设定的口令)SQL>执行alteruserscottidentifiedby"tiger"accountunlock;意义:修改scott的密码为tiger,并且将其帐户解锁。登录oracle时,scottisl

系统 2019-08-12 01:54:20 2531

Oracle

杀Oracle死锁进程方法

Oracle解锁Recordislockedbyanotheruser?selectt2.username,t2.sid,t2.serial#,t2.logon_timefromv$locked_objectt1,v$sessiont2wheret1.session_id=t2.sidorderbyt2.logon_time;--查看锁--altersystemkillsession'sid,serial#';--把锁给KILL掉altersystemki

系统 2019-08-12 01:54:20 2531