Sign in
Developer hearted / Relational minded
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.Net
ADO.NET
ALM
Basta
Data Dude
Logging
Merge
Reporting Services
SMO
SQL Server
SQL Server 2000
SQL Server 2005
SQL Server 2008
SQL Server 2012
SQL Server Agent
SQL Server Deployment
SQL Server Integration Services
SSIS
T-SQL
T-SQL Procedure
Unit Testing
Visual Studio for Database Professionals
VSDBCMD
VSTSDB
XML
Archive
Archives
March 2013
(2)
February 2013
(3)
January 2013
(4)
September 2012
(1)
June 2012
(1)
September 2011
(2)
August 2010
(4)
July 2010
(6)
January 2010
(1)
November 2009
(2)
October 2009
(7)
September 2009
(8)
July 2009
(1)
June 2009
(1)
May 2009
(3)
April 2009
(11)
March 2009
(2)
February 2009
(1)
January 2009
(5)
November 2008
(1)
October 2008
(1)
July 2008
(4)
June 2008
(1)
May 2008
(4)
April 2008
(4)
March 2008
(4)
February 2008
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Developer hearted / Relational minded
An “secret” SSIS XML Destination Provider you might not found yet
Posted
over 4 years ago
by
Jens K. Suessmeyer -
19
Comments
(Sample code included at the end of the post) The initiator for this post was Dan Atkins who wanted to create a feed from relational data to consume it directly from a created gadget. Where can I find that in the toolbox ? First of all, you won...
Developer hearted / Relational minded
Script out Jobs in SQL Server
Posted
over 4 years ago
by
Jens K. Suessmeyer -
12
Comments
Do you want to script out the jobs available in SQL Server Agent ? There a many ways to skin the cat. The probably easiest one is to us the built in functionality of SSMS. Simply select all the jobs (doing a STRG+A on the Object Explorer list) and...
Developer hearted / Relational minded
Change the edition in SQL Server 2008
Posted
over 4 years ago
by
Jens K. Suessmeyer -
0
Comments
Doing a SKUUPGRADE has changed a little bit in SQL Server 2008. Instead of using the SKKUUPGRADE from the SETUP.EXE as in SQL Server 2005 you can now specify the parameter /ACTION=Upgrade. [1] For the GUI friends, there is a new Edition Upgrade wizard...
Developer hearted / Relational minded
ALM Visual Studio Database Projects Guidance is out in the wild !
Posted
over 3 years ago
by
Jens K. Suessmeyer -
3
Comments
After many months of hard work, collaboration, short weekends and nights, the new ALM Rangers guidance document is out covering Visual Studio Database Projects. Details about the documents and the documents themselves can be found here: Visual...
Developer hearted / Relational minded
Expand :r referenced files for SQLCMD into one file (SQLCmdScriptExpander)
Posted
over 3 years ago
by
Jens K. Suessmeyer -
4
Comments
(Updated version available in this blog post ) How can we expand files from a .sql file referenced with the :r operator ? Ok, lets make a step back in the past and see how we used to reference files in .sql files and calling them via OSQL or ISQL...
Developer hearted / Relational minded
Consuming SSIS package data in Reporting Services (and using Web Services in addition) Part 2
Posted
over 4 years ago
by
Jens K. Suessmeyer -
3
Comments
(Update: Due to security reasons the functionality retrieving data from SSIS packages has been deprecated and is no longer available in SQL Server 2008 R2) (Sample project attached to the blog entry !) Having stated the need for getting data from...
Developer hearted / Relational minded
Light weight SQL Server procedure auditing without using SQL Server auditing version 2
Posted
over 3 years ago
by
Jens K. Suessmeyer -
3
Comments
(The project is attached to this blog post, if you have any questions, feel free to send me a mail. You find the bits for download here .) The most recent version can be found here For all of you who haven´t been able to read my blog entry on logging...
Developer hearted / Relational minded
Getting a list of all facets and its properties
Posted
over 4 years ago
by
Jens K. Suessmeyer -
8
Comments
For those struggling as I did for getting the complete list of all facets and its properties available, I went down the dark side of the code (Reflection) and got the methods to extract the information from the PBM framework. As a complete reference ...
Developer hearted / Relational minded
Light weight SQL Server procedure auditing without using SQL Server auditing
Posted
over 4 years ago
by
Jens K. Suessmeyer -
6
Comments
(UPDATE: Updated technical version is available through this blog post here . The basic information and background though is available in the blog post you are reading) A week ago a colleague asked for different options to do audit stored procedure...
Developer hearted / Relational minded
Did your SQL Agent doze off and you don´t know which jobs to run afterwards ?
Posted
over 3 years ago
by
Jens K. Suessmeyer -
9
Comments
In some cases you might face the problem that SQL Server Agent Service didn't come up or was stopped for reason. Jobs scheduled in the downtime will not run automatically when the Agent service comes up again, and that is a good thing. I often...
Developer hearted / Relational minded
Usage of @@Trancount in DML statements
Posted
over 3 years ago
by
Jens K. Suessmeyer -
4
Comments
Some time ago I got an interesting questions why the following applies: -- drop table a create table a(m varchar ( max ), i int ) go declare @cnt int --Explicit transaction begin tran set @cnt=@@trancount insert into a select 'inside...
Developer hearted / Relational minded
Determine the current status of a SQL Server Agent job
Posted
over 4 years ago
by
Jens K. Suessmeyer -
2
Comments
Due to the problem that there is no definite table for getting information about the current status of jobs, I created a small procedure grabbing the information from parts of the internal procedures used to extract the very relevant information. As an...
Developer hearted / Relational minded
Get the NULL percentage of values in a specific table dynamically
Posted
over 3 years ago
by
Jens K. Suessmeyer -
4
Comments
Nothing really fancy, but a small script I was now asked twice for. So I thought I publish it for the public and for the reference for others. It simply calculates the percentage of NULL values for a specific table in all columns. The last request was...
Developer hearted / Relational minded
Getting feedback / progress from batches and stored procedures
Posted
over 4 years ago
by
Jens K. Suessmeyer -
5
Comments
Ever wanted to get feedback and interim results like a progress from a stored procedure ? Well, not that easy as the results such as PRINT information is send after the batch has been completed. If you want to get information back from your batches you...
Developer hearted / Relational minded
Enumerating Parameter Collection in SQL Server Reporting Services
Posted
over 5 years ago
by
Jens K. Suessmeyer -
1
Comments
Many of you often tried to and ask for how to enumerate the Parameters the collection. The MSDN has a very clear statement about that: “You cannot use a Microsoft Visual Basic For Each construct to step through the collection. You need to...
Developer hearted / Relational minded
Bulk Backup and Restore at the tip of your finger
Posted
over 2 years ago
by
Jens K. Suessmeyer -
2
Comments
(Code can be downloaded here ) The Backup part “Can you please give me a recent backup of all user databases on that computer please ?” That is the sentence that will delay your planned work for the afternoon and will keep you busy for numerous hours...
Developer hearted / Relational minded
Database internal file versions– How to determine if the database was upgraded or created from scratch
Posted
over 3 years ago
by
Jens K. Suessmeyer -
1
Comments
In some cases it it interesting to know whether a database was directly created on the current version of the running SQL Server instance or if the database was upgraded during an upgrade of the instance or by attaching a database from an older...
Developer hearted / Relational minded
Script out jobs in SQL Server v2
Posted
over 3 years ago
by
Jens K. Suessmeyer -
4
Comments
For those asking a couple of times if the JobScripter for SQL Server Agent jobs is also available in 2008… here it is ! The only difference is that the version v2 is now targeting to SMO Assemblies of SQL Server 2008 which is version 10.0. This...
Developer hearted / Relational minded
Obfuscation is not a security feature – Spoofing the APP_NAME
Posted
over 5 years ago
by
Jens K. Suessmeyer -
2
Comments
SQL Server 2005 introduced an interesting and long demanded feature, the LOGON triggers. First only defined via server event triggers, it has become more and more popular in same scenarios to prevent users with a certain machine environment accessing...
Developer hearted / Relational minded
A long (but not missed) friend revisited, prefixing stored procedures with SP_
Posted
over 4 years ago
by
Jens K. Suessmeyer -
2
Comments
Coming as a simple sample with PBM (creating a policy with a condition that procedure names shouldn't´t start with SP_) and getting an interesting question in one of my classes, I wanted to revisit the question about the yet in some places existing naming...
Developer hearted / Relational minded
Need more spare time ? Use SQLIOSimParser to interpret your IO results !
Posted
over 4 years ago
by
Jens K. Suessmeyer -
2
Comments
My colleague Marvelous Jimmy ( JimmyMay ) and myself did a small project to parse and interpret the results of the testing tool SQLIO. It produces ready-to-interpret reports and reusable results in Excel and will save you (as of Jimmy) much time...
Developer hearted / Relational minded
Want to know what happened on your database by reading the transaction log ?
Posted
over 4 years ago
by
Jens K. Suessmeyer -
0
Comments
(Download the dbo.fndblog2 function here ) Update and word of caution: Be aware that the mentioned function is undocumented and subject to change in any release of SQL Server. You should only use that for investigational purposes and in case you...
Developer hearted / Relational minded
We heard the voices... SP3 for SQL Server 2005 is coming
Posted
over 5 years ago
by
Jens K. Suessmeyer -
1
Comments
http://blogs.technet.com/dataplatforminsider/archive/2008/04/15/sql-server-2005-sp3-coming-soon.aspx -Jens
Developer hearted / Relational minded
Project corruption after upgrade VSTSDB & Unit tests
Posted
over 4 years ago
by
Jens K. Suessmeyer -
0
Comments
As it was hard to find the cause of this error and the answer, I wanted to share some searchable information on the internet for that. The following problem occurs while doing an upgrade of “older” VSDB project to the new GDR releases. As you have seen...
Developer hearted / Relational minded
TDS Protocol Versions meet client stacks
Posted
over 4 years ago
by
Jens K. Suessmeyer -
1
Comments
A colleague (Cornel Sukalla) asked me what the protocol_version in sys.dm_exec_connections is all about. From the output it seems that its an INT presenting the version for the protocol used by the client. With some research and having in mind that those...
Page 1 of 4 (88 items)
1
2
3
4