码迷,mamicode.com
首页 > 2017年11月22日 > 全部分享
oracle表空间转移
--查看表空间下的表 select t.TABLE_NAME,T.TABLESPACE_NAME from dba_tables t where t.TABLESPACE_NAME = '${spacename}' and owner = '${owner}'; --查看表空间下的索引 select ...
分类:数据库   时间:2017-11-22 00:00:51    阅读次数:215
sass環境搭建
一.下載ruby並安裝https://rubyinstaller.org/downloads/安裝過程中需要勾選“addRubyexecutablestoyourPATH”安装完成之后可再次使用ruby-v检测是否安装成功取消默认的绑定源gemsources--removehttps://rubygems.org/绑定国内网站gemsources-ahttp://gems.ruby-china.org/gems..
分类:其他好文   时间:2017-11-22 00:00:44    阅读次数:197
sqli-labs less1 学习心得
id=1/ id=1 and 1=1结果正常 id=1 and 1=2结果正常,不合理 id=1'提示: 分析: use near ' ' 1' ' LIMIT 0,1 ' 所以正确sql语句 为: select username,password from table where id='inpu ...
分类:数据库   时间:2017-11-22 00:00:35    阅读次数:256
线程操作API
1、Thread.currendThead Thread的静态方法currendThead方法可以用于获取运行当前代码片段的线程。 2、获取线程信息 Thread提供了获取线程信息的相关方法 3、线程优先级 线程切换时由线程调度控制的,我们无法通过代码来干涉,但是我们可以通过提高线程优先级来最大程度 ...
分类:编程语言   时间:2017-11-22 00:00:24    阅读次数:276
simple2.py
1 #coding: utf-8 2 import xlsxwriter 3 4 workbook = xlsxwriter.Workbook('chart.xlsx') 5 worksheet = workbook.add_worksheet() 6 7 chart = workbook.add_... ...
分类:其他好文   时间:2017-11-22 00:00:13    阅读次数:209
Centos7安装搭建Bugzilla 5.0
1、安装准备: Centos7保证网络连通,如果网络不能连通,可通过配置yum源使用代理服务。 vim /etc/yum.conf # The proxy server - proxy server:portproxy=http://192.168.178.1:8080# The account d ...
分类:其他好文   时间:2017-11-22 00:00:05    阅读次数:307
856条   上一页 1 ... 48 49 50 51
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!