Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Browsing all 3160 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

SQL Server Health Check Checklist

AnySQL Server DBA worth their salt have their own checklist through which they routinely go to make sure that all systems are up and running. Below we willshare with you some crucial points related to...

View Article


Image may be NSFW.
Clik here to view.

[原]全废话SQL Server统计信息(2)――统计信息基础

接上文: http://blog.csdn.net/dba_huangzj/article/details/52835958 我想在大地上画满窗子,让所有习惯黑暗的眼睛都习惯光明――顾城《我是一个任性的孩子》 这一节主要介绍一些理论层面的东西,主要针对SQL Server,为后面的做铺垫,如果从实操层面考虑可以跳过,但是我强烈建议还是要找时间看一下这节。本节的内容如下: SQL...

View Article


Auto Generate Auto Incremented Alphanumeric Sequential Code in SQL Server

Introduction : In this article I am going to explain How to automatically generate next unique alphanumeric sequential item code of specified length and prefix using user defined function In Sql...

View Article

Image may be NSFW.
Clik here to view.

SQL Server Infrastructure and Virtualization Boot Camp

I amproud to announce the availability of our new training offerings! We are launching a live web-based version of our one-day SQL Server infrastructure and virtualization master class . We are...

View Article

SQL Server 2016 Management Studio Download

It’s that time of the year. No, I’m not talking about christmas, I’m talking about new product cycles from Microsoft. For SQL Server it usually happens on even years, it’s 2016 so this year we have a...

View Article


SQL 联合查询与XML解析实例详解

SQL 联合查询与XML解析实例          这里举例说明如何实现该功能:(select a.EBILLNO,a.EMPNAME,a.APPLYDATE,b.HS_NAME,replace(replace(a.SUMMARY,char(10), ''),char(13),'') as SUMMARY,cast(c.XmlData as...

View Article

sql server定时作业调用Kettle job出错的快速解决方法

错误信息:Unable to list jar files in plugin folder 'C:\windows\system32\config\systemprofile\.kettle\plugins' Unable to get VFS File object for filename...

View Article

DATASET 与 DATAREADER对象有什么区别

...

View Article


Image may be NSFW.
Clik here to view.

Sql Server 2016新功能之Row-Level Security(值得关注)

Sql Server 2016 有一个新功能叫 Row-Level Security ,大概意思是行版本的安全策略(原来我是个英语渣_(:з」∠)_)直接上例子。这个功能相当通过对表添加一个函数作为过滤规则,使得拥有不同条件的用户(或者登录名)...

View Article


Image may be NSFW.
Clik here to view.

SQL数据分页查询的方法

最近学习了一下SQL的分页查询,总结了以下几种方法。首先建立了一个表,随意插入的一些测试数据,表结构和数据如下图:现在假设我们要做的是每页5条数据,而现在我们要取第三页的数据。(数据太少,就每页5条了)方法一: select top 5 * from [StuDB].[dbo].[ScoreInfo] where [SID] not in (select top 10 [SID] from...

View Article

Image may be NSFW.
Clik here to view.

sqlserver数据库高版本备份还原为低版本的方法

问题描述:高版本sql备份在低版本sql还原问题(出现媒体簇的结构不正确)分析原因:sql版本兼容问题,sql server兼容级别是用作向下兼容用,高版本的sql备份在低版本中不兼容解决方法 :1、通过管理器的脚本生成向导,把其他数据库 ,表,存储过程等对象的脚本生成,然后在低版本的sql server下执行建立这些对象.。2、通过dts/ssis,将表中的数据导过去。  此处我们把第1种开发方法...

View Article

Image may be NSFW.
Clik here to view.

MS sqlserver 2008数据库转换成2000版本的方法

话说本来我的电脑有个2000的数据库,去年我在那个电脑上新装了一个2005的数据库。前不久我买了台新电脑,装了数据库2008 将在旧电脑上的一个数据库附加到了2008上面。做完项目,将数据库传到空间时,空间数据库是2000的,报错说我的数据库是2005的...

View Article

Image may be NSFW.
Clik here to view.

SQLServer 2008数据库降级到2005低版本

由于目前还广泛使用着SQLServer2000,很多公司又想使用新的SQLServer,从而直接【分离/附加】或者【备份/还原】数据库,在不同版本之间存放。往往就会遇到版本不兼容的问题。前几天遇到了从我本机2008R2上备份的一个数据库还原到2008上面时报错:从运行版本10.50.2500(2008R2是10.50)和10.00.1600(2008是10.00)中可以看出这个版本不兼容问题,大部分...

View Article


Image may be NSFW.
Clik here to view.

SqlServer高版本数据备份还原到低版本

最近遇见一个问题:...

View Article

Image may be NSFW.
Clik here to view.

Spark SQL数据加载和保存实例讲解

一、前置知识详解 Spark SQL重要是操作DataFrame,DataFrame本身提供了save和load的操作, Load:可以创建DataFrame, Save:把DataFrame中的数据保存到文件或者说与具体的格式来指明我们要读取的文件的类型以及与具体的格式来指出我们要输出的文件是什么类型。 二、Spark SQL读写数据代码实战import...

View Article


Image may be NSFW.
Clik here to view.

如何验证会员系统中用户的邮箱是否真实存在

在开发网站时,我们需要对用户注册的邮箱进行核对与验证,用户填写的邮箱是否有效邮箱。好吧,我们先从数据库入手,修改用户表让用户有填写email的字段,添加了2个字段:ALTER TABLE [dbo].[Users]ADD [Email] VARCHAR(100) NULL, [IsVerify] BIT NOT NULL DEFAULT(0) SELECT * FROM...

View Article

SQL Server 中 RAISERROR 的用法详细介绍

 SQL Server 中 RAISERROR 的用法raiserror 的作用: raiserror 是用于抛出一个错误。[ 以下资料来源于sql server 2005的帮助 ]其语法如下:RAISERROR ( { msg_id | msg_str | @local_variable } { ,severity ,state } [ ,argument [ ,...n ] ] ) [ WITH...

View Article


Image may be NSFW.
Clik here to view.

SQL Server Space Usage

SQL Server Space Usage Hello there, this post can explain various ways to know the SQL Server Space Usage information. Here are the different ways available: XP_FIXEDDRIVES SP_SPACEUSED SP_HELPDB DBCC...

View Article

Image may be NSFW.
Clik here to view.

Query Store changes in SQL Server vNext CPT1

Not only did we receive a brand new Service Pack for SQL Server 2016 this week, since yesterday we are able to play with the first Community Technology Preview (CTP) of SQL Server vNext! Since I adore...

View Article

Image may be NSFW.
Clik here to view.

Introduction to C# Scripting for SQL Server DBAs

By:Jeffrey Yao || Related Tips:More > Database Administration Problem Since the Visual Studio 2015 Update 1 , Microsoft has introduced an interactive C# scripting technology inside the Visual...

View Article
Browsing all 3160 articles
Browse latest View live