Welcome 2017! Recap of top SQL Server posts of 2016
We start off the new year with a quick recap of our most popular posts on this blog channel from the year just concluded. Here are the posts that got the most number of views from our readers during...
View ArticleTSQL script to get the index size and information in SQL Server
TSQL script to get the index size and information in SQL Server TSQL script to get the index size and information in SQL Server post can help you in getting the index information from a database in SQL...
View ArticleSQL Server for the New or Non-dba Nashville Edition Reminder
Tags: SQL Server I wanted to throw out a reminder that I’ll be giving a pre-con at Nashville SQL Saturday 2017 . I know that the announcement for it was right before the holidays and things can get...
View ArticleExploring Azure Storage for SQL Server DBAs
Home SQL Database Administration Exploring Azure Storage for SQL Server DBAs 04 January 2017 Exploring Azure Storage for SQL Server DBAs If you need to run SQL Server in an Azure Virtual Machine, your...
View ArticleDH2i expands to the Asia Pacific Market
DH2i Company has announced the expansion of its DxAdvantage Partner Program into the Asia Pacific (APAC) market. Key to the expansion is the addition of Korea Cyber Tech Inc. and ApON Innovative...
View ArticleMicrosoft SQL Server was another surprise hit for Microsoft in 2016
Microsoftreleased SQL Server 2016 last year on windows 10 as well as linux. The company’s SQL Server was actually one of its surprise hits last year. That’s because a new report from DB-Engines states...
View Article微软 Azure 与开源工作受到青睐:SQL Server 因此受益
对于微软数据库软件来说,2016 是一个丰收年,因为该公司的 SQL Server 被奥地利咨询公司 Solid IT 评为“年度数据库管理系统”。Solid IT 在今日发表的一篇博客中指出:“尽管甲骨文在排名上仍保持着领先地位,但 SQL Server 2016 的发布、以及宣布将其移植到 linux 的举动,让大家对该公司的产品提起了浓厚的兴趣”。...
View ArticleSQL SERVER SSMS Script Out Multiple Objects
Have you ever driven your car out in the direction of your office by mistake when it was supposed to be a day off? Have you ever done things unconsciously because you are getting trained for something...
View ArticleSimple and Granular Data Protection for Microsoft SQL Server White Paper
When it comes to the protection of relational database management systems (RDBMS) such as Microsoft SQL and Oracle, the best way to protect their data and integrity is by using advanced data...
View Article与Linux爱的结晶:微软SQL Server 2016年份额猛增76.89%
1月5日消息,微软去年推出了linux版的SQL Server 2016,这让很多Linux用户都非常高兴,直接促使SQL Server全球份额猛增76.89%(从2016年1月至2017年1月)。处于全球份额第二位的mysql也上涨了67.03%,只是排在首位的Oracle降幅较为明显,下降了79.36%。 虽然SQL...
View Article为什么你SQL Server的数据库文件的Date modified没有变化呢?
在SQL Server数据库中,数据文件与事务日志文件的修改日期(Date Modified)是会变化的,但是有时候你会发现你的数据文件或日志文件的修改日期(Date Modified)几个月甚至是半年以上都没有变化了,如下截图所示: 为什么呢?不会是什么bug吧? 相信很多人都会有这样的反应。下面我们通过实验来看看数据库的数据文件与事务日志文件在什么情况或条件下, 修改日期(Date...
View ArticleSimple SQL Server ASP.NET Web Service
I am not a developer. I am a database dude. So don't take this article as your source for the best way to develop a web service. This is just a simple example of how to call a stored procedure from an...
View ArticleRemoving a Secondary Replica from a SQL Server AlwaysON Availability Group
By:Manvendra Singh || Related Tips:More > AlwaysOn Availability Problem If you receive a requirement to remove a secondary replica from your existing SQL Server AlwaysOn Availability Group then...
View ArticleMSSQLTips.com Author and Rookie of 2016
By:Edgewood Solutions || Related Tips:More > Professional Development Community In 2016, we had 25 different authors that qualified for either the Author of the Year or the Rookie of the Year . To...
View ArticleSQL---In-Exists-Any sql sql语句 SQLServer In-Exists-Any
SQL---In-Exists-Any。假设A in(not in,exists,not exists )B In:只要A中的值在B中存在则返回truenot in:只要A中的值在B中不存在则返回trueexists:只要A中的值在B中存在则返回truenot exists:只要A中的值在B中不存在则返回trueany:三种情况 A > any B:A中的值只要大于B中的最小值则返回trueA...
View ArticleSQL中单表的自我关联 sql sql语句 SQLServer 单表自我关联
SQL中单表的自我关联。今天在学习sql的时候,遇到一个很有意思的问题---单表中字段存在关联,图中字段empno表示员工编号,ename表示员工姓名,JOB表示职位,MGR表示上级领导员工编号,HIREDATE表示入职日期,SAL表示薪水,COMM表示提成,DEPTNO表示部门表的编号,此处作为外键。...
View Article优化MySchool第三章SQL编程 MySchool优化 SQL SQL编程 SQL语句
优化MySchool第三章SQL编程 /****** Script for SelectTopNRows command from SSMS ******/SELECT TOP 1000 [StudentNo] ,[LoginPwd] ,[StudentName] ,[Gender] ,[GradeId] ,[Phone] ,[Address] ,[Birthday] ,[Email]...
View ArticleDynamic Data Masking Feature in SQL Server 2016
Microsoft has introduced an impressive new feature in SQL Server 2016 called Dynamic Data Masking (DDM). Dynamic Data Masking allows a developer or administrator to decide how much of the sensitive...
View Article行级锁为什么锁住了整个表?
SQL Server中,行级锁,听名字就是锁定指定行的,锁定之后,其他连接不能操作该行,但可以操作其他行。 它的优点是不锁那么宽泛,不像表级锁一样,整个表都锁住了。缺点据说是如果行级锁太多,就比较耗资源,当 SQL Server发现行级锁太多时,就会自动升级为表级锁。据说是这样的。 今天要讨论的是另外一个问题,为什么只有一个行级锁,却锁住了整个表呢? -- 事务 A,先执行它begin...
View ArticleStep for creating Hierarchical Dimensions in SSAS.
Doing the practical’s in SSAS is easy but the steps involved in that is lengthy as there are many clicks which are involved in the whole process. Unless it is practiced on your own achieving Excellency...
View Article