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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.Net
ADO.NET
Basta
Custom Security
Data Dude
Launch
Merge
Reporting Services
SMO
SQL Server
SQL Server 2000
SQL Server 2005
SQL Server 2008
SQL Server Agent
SQL Server Deployment
SQL Server Integration Services
SSIS
T-SQL
T-SQL Procedure
T-SQL Procedure Logging
Unit Testing
Visual Studio for Database Professionals
VSDBCMD
VSTSDB
XML
Archive
Archives
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)
MSDN Blogs
>
Developer hearted / Relational minded
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Developer hearted / Relational minded
Bulk Backup and Restore at the tip of your finger
Posted
8 months ago
by
Jens K. Suessmeyer -
1
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
IsGuid or not isGuid, that is the question…
Posted
8 months ago
by
Jens K. Suessmeyer -
2
Comments
As I was asked about a functionality how to check a string for being of the type GUID and only finding either solution with massive string operations, or using TRY..CATCH trying to CAST a value and then returning the CAST or CONVERT result, I created...
Developer hearted / Relational minded
Get the NULL percentage of values in a specific table dynamically
Posted
over 2 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
ALM Visual Studio Database Projects Guidance is out in the wild !
Posted
over 2 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 2 years ago
by
Jens K. Suessmeyer -
1
Comments
Again a common question which I wanted to be able to answer once and for all: 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...
Developer hearted / Relational minded
Script out jobs in SQL Server v2
Posted
over 2 years ago
by
Jens K. Suessmeyer -
2
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
Database internal file versions– How to determine if the database was upgraded or created from scratch
Posted
over 2 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
Did your SQL Agent doze off and you don´t know which jobs to run afterwards ?
Posted
over 2 years ago
by
Jens K. Suessmeyer -
6
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
Database internal file versions–Where is the Undo button for a database upgrade ?
Posted
over 2 years ago
by
Jens K. Suessmeyer -
3
Comments
A common question is how to move back to the older version of the database once upgraded. The answer is, you can´t . By attaching the database to the new SQL Server version an upgrade is done internally which can be seen if you run the attach commands...
Developer hearted / Relational minded
SSIS as a data source for SSRS–where is it gone for SQL Server 2008 R2
Posted
over 2 years ago
by
Jens K. Suessmeyer -
4
Comments
Some time ago I did a blog entry for SQL Server Integration Services packages as a data source for SQL Server Reporting Services reports. You can find this article here. This feature relies on a data processing extension that is explained in detail here...
Developer hearted / Relational minded
Usage of @@Trancount in DML statements
Posted
over 2 years ago
by
Jens K. Suessmeyer -
0
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
Light weight SQL Server procedure auditing without using SQL Server auditing version 2
Posted
over 2 years ago
by
Jens K. Suessmeyer -
1
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 .) For all of you who haven´t been able to read my blog entry on logging yet, I suggest you to read the first...
Developer hearted / Relational minded
The New! report in town
Posted
over 2 years ago
by
Jens K. Suessmeyer -
0
Comments
Ever wondered what New! means if you see a report in SQL Server Reporting Services Manager ? Obviously it is a report which was created recently. But what does “recently” mean and do I have a way to influence what SQL Server identifies with “New!”. Well...
Developer hearted / Relational minded
Want to know what happened on your database by reading the transaction log ?
Posted
over 3 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
An “secret” SSIS XML Destination Provider you might not found yet
Posted
over 3 years ago
by
Jens K. Suessmeyer -
18
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
SSIS as a data source needed ? Watch out for configuration traps
Posted
over 3 years ago
by
Jens K. Suessmeyer -
1
Comments
Someone pinged me according the article I wrote about SSIS as a data source in Reporting Services. In general this is easy to implement and configure. One problem though occurs if you already had SQL Server 2005 on the machine first and updated...
Developer hearted / Relational minded
SQLIOSIMParser 0.3.3.0 is available
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
After skipping some internal version the 0.3.3.0 is available now , these are the new features: Version 0.3.1.0 <Internal Bugfixing> Version 0.3.3.0 -Moved settings to a separate settings page and save them for later use (Suggested by me) -Added...
Developer hearted / Relational minded
SQLIOSimParser 0.3.1.0 is available
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
These are the new functionalities comparing the 0.2.3.1 version: -Added n-m mapping for different test iterations (Suggestion to Jimmy) -Included output to CSV (Suggestion to Jimmy) -Being able to specify a delimiter for the CSV output (Suggestion...
Developer hearted / Relational minded
SQL Server Reporting Services Logging & Caching project released on Codeplex
Posted
over 3 years ago
by
Jens K. Suessmeyer -
1
Comments
The first version (0.3.0.0) of a small project I did was published to Codeplex ( http://rsparamlogcache.codeplex.com/ ). It enables you to log and cache user parameter values for further usage and statistics. Here is short extract from the project...
Developer hearted / Relational minded
Jump on the Express Trace if you can – SQL Server Express server side tracing
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
Running SQL Server Traces on SQL Server Express SQL Server Express does not come with a SQL Server Profiler GUI. (Period) Though can still use SQL Server Profiler tools from other editions to connect to the SQL Server Express edition. (But make sure that...
Developer hearted / Relational minded
New Cumulative Update for CU4 for SQL Server 2008 SP1
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
Head up, the new CU is ready ! This one is CU (Cumulative Update) 4 for SQL Server 2008 SP1 (means that you will need to have SP1 installed in order to install the update) See the information of the release services team here: http://blogs.msdn...
Developer hearted / Relational minded
Project corruption after upgrade VSTSDB & Unit tests
Posted
over 3 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
Basta Herbst 2009 in Mainz
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
Thank for all participants attending my sessions in Mainz. As promised, here are the slide decks and demos I used during my presentations. If you have any question to this are other SQL Server related topics, feel free to ping me. I am looking forward...
Developer hearted / Relational minded
SQLDays in Rosenheim Herbst 2009
Posted
over 3 years ago
by
Jens K. Suessmeyer -
0
Comments
Thank for all participants attending my sessions in Mainz. As promised, here are the slide decks and demos I used during my presentations. If you have any question to this are other SQL Server related topics, feel free to ping me. I am looking...
Developer hearted / Relational minded
Need more spare time ? Use SQLIOSimParser to interpret your IO results !
Posted
over 3 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...
Page 1 of 4 (77 items)
1
2
3
4