Wednesday, December 14, 2011
SQL Server Service Broker Security
Understanding SQL Server Service Broker Authentication
Service Broker endpoint supports both Windows Authentication and Certificate Based Authentication. Windows Authentication is preferred if the distributed Service Broker endpoints are in the same windows domains, and Certificate Based Authentication is used if these endpoints are in two different windows domains, for information click here.
Executing a SSIS Package from Stored Procedure in SQL Server
Recently we had a requirement to execute a SSIS package from one of our user stored procedures, but there is no direct way available in SQL Server for executing a SSIS package from a stored procedure. SQL Server has some undocumented system stored procedures for SSIS package management, but none is available that can be used to execute a SSIS package from the stored procedure. Now the question is, how can we execute a SSIS package from the user stored procedure? If the direct method is not available, is there any alternative for this?
Here are two different ways a SSIS package can be executed from a stored procedure. In the first approach, we will create a job, making SSIS package call a job step and executing it by calling the sp_start_job system stored procedure from the user defined function. In the second approach, we will enable xp_cmdshell to execute the DTEXEC command line utility from the user defined stored procedure, for information click here.
SQL Server Integration Services ( SSIS ) Interview Questions
SSIS Package Deployment Model in SQL Server 2012 - Denali
SSIS Enhancements in SQL Server 2012 - Denali
Friday, August 26, 2011
SQL Server Denali THROW statement to raise an exception
Understanding Ad-hoc paging in SQL Server Denali
Thursday, June 30, 2011
Diagnostic logging in SharePoint 2010
Getting Started with the SharePoint Logging and Reporting Database in SharePoint 2010
Health Analyzer in SharePoint 2010
Getting started with Code Snippets feature of SQL Server Denali
Short-cut keys for commonly used tasks in SSMS - Part 2
Short-cut keys for commonly used tasks in SSMS - Part 1
Understanding SQL Server Net-Libraries
I know that SQL Server and its clients interact with each other using different Net-Libraries or network protocols. But what are these Net-Libraries that SQL Server uses and how do each of these differ from the others. Also, in which scenario is one preferred over the others? SQL Server provides different Net-Libraries, known as Dynamic-Link Library (DLL), to let clients communicate with SQL Server using different network protocols. These Net-Libraries specify which networking protocols to use while exchanging data back and forth between SQL Server and the clients. To learn more about it click here.
Saturday, April 2, 2011
Service Broker and Poison Message Handling
SQL Server 2008 Service Broker - Conversation Priorities
Monday, March 7, 2011
SQL Server Service Broker - External Activation
SQL Server Service Broker allows for setting up two types of activation, Internal Activation or External Activation. To handle increased message traffic, in internal activation you specify a stored procedure (multiple instances might be created depending on your setting) to be called and this way you scale up your distributed application, whereas in case of external activation Service Broker sends notification (QUEUE_ACTIVATION event) to an external application/program outside SQL Server to read the message from the queue and process it. This way you actually scale out your distributed application. External activation allows putting heavy weight processing logic outside SQL Server in a separate process than SQL Server which gives better performance and scalability or might run under different credential than the SQL Server service account.
In my last article I talked about setting up internal activation, writing a stored procedure which will be called upon on activation. In this article, I will be talking about external activation in detail. For more details click here.