SSIS - How to Convert Month Number into Month Name in SSIS Package By Using...
Scenario:We have data in flat file that has Month Number column. We need to process this data and finally load to an Excel Destination. Instead of Month Number we want to load Month Name in Excel...
View ArticleSSIS - How To Get Day Name from Week Day Number By Using Script Component In...
Scenario:In this post we will learn how to convert Week Day Number (1,2,3,4,5,6,7) to Day name ( Monday,Tuesday, Wednesday,Thursday,Friday,Saturday and Sunday) by using Script Component.Solution:Let's...
View ArticleHow to change SQL Server Service Account ?
How to Change SQL Server Service Account ?You can change service account anytime you would like after the installation however it would require you to restart SQL server services in order to take...
View ArticleWhat are the Types of data compression available in SQL Server?
Data compression in SQL ServerThere are two types of Data compression SQL Server supports. 1- Row compression SQL server engine performs Row Compression by changing the data storage format,...
View ArticleHow to configure SQL Server Minimum and Maximum Memory? Why is it important...
a) How to configure SQL Server Minimum and Maximum memory?You can configure SQL server memory either using T-SQL configuration statement or using management studio. This article illustrates using...
View ArticleHow to put SQL Server Database in Read Only Mode?
How to put SQL Server database in read only mode?There are couple of ways you accomplish this task, using T-SQL database configuration statement or using SQL Server management studio. This article...
View ArticleHow to set SQL Server database in Emergency mode? Why do we need to set SQL...
a) How to set SQL Server database in Emergency mode?There are different ways that you set SQL Server Database in Emergency mode, however this article will illustrate using T-SQL Database configuration...
View ArticleHow to enable Change Data Capture of a SQL Server database?
You can enable Change Data Capture of a SQL Server database using below T-SQL Statement. Use [YourDatabase_name] EXECsys.sp_cdc_enable_db GO
View ArticleHow to disable Change Data Capture on SQL Server Database?
You can disable Change Data Capture of any database which has CDC enabled already using below T-SQL Statement. Use [YourDatabase_name] EXECsys.sp_cdc_disable_db GO
View ArticleHow to check if Change Data Capture is enabled or disabled on a SQL Server...
You can check whether Change Data Capture is enabled or disable on a particular database in SQL Server using below T-SQL Statement. usemaster SELECT [name], is_cdc_enabled FROMsys.databaseswhere...
View ArticleHow to enable Change Data Capture on one or more tables in a SQL Server...
You can enable CDC on one or more table using below T-SQL StatementUse [Your_Database_name]EXECsys.sp_cdc_enable_table@source_schema =N'Your_Schema_name',--Table Schema name such as dbo@source_name...
View ArticleHow to disable change data capture (CDC) on a table?
This article illustrates how to disable Change Data Capture on a table that has already CDC enabled in a database. T-SQL: USE Your_Database_NameGOEXECsys.sp_cdc_disable_table@source_schema...
View ArticleHow to Track Changes of a particular period? Specified duration
This article illustrates how to track the changes of specified duration, you can specify your interval i.e. begin data and time, end data and time to retrieve particular period changes using below...
View ArticleWhat is CPU Affinity? Why is it helpful to configure CPU Affinity?
This article illustrates what is CPU affinity and why is it helpful to configure CPU affinity? CPU Affinity: CPU Affinity sometimes refers as CPU pinning enables a particular process or a thread to use...
View ArticleHow to Configure CPU Affinity? Step by Step process
This article illustrates how to configure CPU affinity in Windows 7, in higher windows versions, process is more or less the same. Step 1. Right click on your task bar and click on start task...
View ArticleWhat is MAXDOP in SQL Server and How can you configure it?
Maximum Degree of Parallelism (MAXDOP) is an option in SQL server which enables you to configure SQL Server to use available CPU/CPUs to run a single statement in parallel execution plan. MAXDOP...
View ArticleHow to find out who dropped the database in sql server?
Well, it is such a vast topic, and there are multiple ways to find out however What I have used is undocumented process which helped me to retrieve the information really quickly. I don't mind using...
View ArticleHow to retrieve SQL Server databases backup information?
SQL Server Backup Information:This article illustrates how to retrieve SQL Server database backups information, depending upon what exactly you are looking for, this article will help you to locate...
View ArticleSSIS - How to move files to difference folders according to the date part in...
Scenario:I have written a post that explains how to create a folder with date by using SSIS Package. You can check here. A reader asked me in comments that if it is possible to move the files to...
View ArticleHow to filter null value rows by using Conditional Split Transformation in SSIS
Scenario:Sometime we have Null values coming from Source. In this post we will learn how to redirect those records by using Conditional Split Transformation.For this post, I have created a sample data...
View Article