码迷,mamicode.com
首页 >  
搜索关键字:ms sql server    ( 144059个结果
5.8 进阶8:分页查询
5.8 进阶8:分页查询 5.8.1 应用场景和语法 当要显示的数据,一页显示不全,需要分页提交sql请求 语法 select 查询列表 from 表 【join type join 表2 on 连接条件 where 筛选条件 group by 分组字段 having 条件 order by 排序的 ...
分类:其他好文   时间:2021-06-02 15:21:28    阅读次数:0
SVN与Git的使用与区别
###1.SVN是集中式版本控制工具,所以需要一台中央服务器,中央服务器可安装VisualSVN Server,创建有架构的仓库,并创建相应的用户或组别,为仓库配置号仓库后,客户端可安装TortoiseSVN,安装后在想上传的项目文件层检索出对应的主干,增加后再提交即可上传项目到SVN服务器。 在团 ...
分类:其他好文   时间:2021-06-02 15:14:51    阅读次数:0
09 spark连接mysql数据库
安装启动检查Mysql服务。 netstat -tunlp (3306) spark 连接mysql驱动程序。 –cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 启动 Mysql she ...
分类:数据库   时间:2021-06-02 15:02:56    阅读次数:0
架构师的成长之路初片~linux-基本防护措施
1:修改用户账号的属性,设置某某时间实效(禁止登陆) 2:临时锁定用户lisi的账户,使其无法登陆,验证效果后解除锁定 3:修改tty终端提示,使得登陆前看到的第一行文本为“Windows Server 2012 Enterprise R2”,第二行文本为“NT 6.2 Hybrid” 4:锁定文件 ...
分类:系统相关   时间:2021-06-02 15:00:47    阅读次数:0
1. 简单介绍什么是 JSP 和 JSP工作原理、一些基本语法
JSP简介 JSP全称是Java Server Pages,是一种动态网页技术,JSP其实就是在html中插入了java代码和JSP标签之后形成的文件,文件名以.jsp结尾。其实JSP就是一个servlet。在servlet中编写html比较痛苦,而写JSP就像在写html,但它相比html而言,h ...
分类:Web程序   时间:2021-06-02 15:00:25    阅读次数:0
Execution Plans in SQL Server
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:数据库   时间:2021-06-02 14:46:02    阅读次数:0
Orale 多列转多行
1、创建表 create table TESTDATE ( calc_type NVARCHAR2(10), calc_no NVARCHAR2(10), calc_name NVARCHAR2(10), calc_aca1 NVARCHAR2(10), calc_aca2 NVARCHAR2(10 ...
分类:其他好文   时间:2021-06-02 14:40:39    阅读次数:0
mysql通过sql来复制表结构
1、create table resultTable select * from sourceTable where ....; 可以复制条件下的数据,也可以复制数据结构,但是字段上面的比如自增长,不会被复制。 2、create table resultTable like sourceTable; ...
分类:数据库   时间:2021-06-02 14:36:16    阅读次数:0
Oracle Dataguard相关sql语句汇总
--check dataguard status select process,status,group#,sequence# from v$managed_standby select * from v$archived_log order by thread#, sequence#; selec ...
分类:数据库   时间:2021-06-02 14:24:58    阅读次数:0
Oracle datapump相关sql语句汇总
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:数据库   时间:2021-06-02 14:24:07    阅读次数:0
144059条   上一页 1 ... 32 33 34 35 36 ... 14406 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!