Login or Sign Up to become a member!
LessThanDot Sit Logo

LessThanDot

All Blogs

Less Than Dot is a community of passionate IT professionals and enthusiasts dedicated to sharing technical knowledge, experience, and assistance. Inside you will find reference materials, interesting technical discussions, and expert tips and commentary. Once you register for an account you will have immediate access to the forums and all past articles and commentaries.

LTD Social Sitings

Lessthandot twitter Lessthandot Linkedin Lessthandot friendfeed Lessthandot facebook Lessthandot rss

Note: Watch for social icons on posts by your favorite authors to follow their postings on these and other social sites.

Your profile

    Search

    XML Feeds

    Google Ads

    Tags: how to

    comments

    If you need to use a Dedicated Administrator Connection (DAC) via SSMS, you can't just use the Connect Object Explorer, if you try you will get the following error Dedicated administrator connections are not supported via SSMS as it establishes multi…

    Read More...
    comments

    Yesterday I blogged about using WITH RESULT SETS with the EXECUTE command here: Use WITH RESULT SETS to change column names and datatypes of a resultset. Naomi Nosonovsky left the following comment Can you use this feature to get result sets from the s…

    Read More...
    comments

    SQL Server 2012 has added WITH RESULT SETS to the EXCECUTE command. You can now override the data types and names that the resultset is returning EXEC ('SELECT name FROM sys.tables' ) WITH RESULT SETS ( (TableName nvarchar(100)) ); Table…

    Read More...
    comments

    I had to deploy a user defined function I was given yesterday, when I tried to I got the following error Msg 6850, Level 16, State 1, Procedure fnGetBooks, Line 8 Column name 'TEXT()' contains an invalid XML identifier as required by FOR XML; '('(0x…

    Read More...
    comments

    I decided to do a SQL Advent series of posts this year as well, this year I will focus on best practices. In case you are interested in last year's posts, all of them are listed here: SQL Advent 2011 Recap Here is what the preliminary 25 posts will l…

    Read More...
    comments

    I took a backup of one of our test databases today and gave it to someone so that it could be restored on one of their servers. I got back the following in an email from the person who tried to do the restore Date 11/16/20…

    Read More...
    comments

    One of the people on my team wants to have the ability to truncate tables on the staging database while this person is testing, why are special permissions required compared to a delete?

    Read More...
    comments

    How to shutdown windows 8

    by SQLDenis on Aug 17, 2012 in categories Windows 8. Article views: 3398 views

    If you installed Windows 8, you might be wondering how to shut down or restart this operating system. There is no more start button so where do you start? There are a couple of ways to shut down the operating system 1) Hit CTRL + ALT + DELETE and…

    Read More...
    comments

    I answered the following question earlier this evening: Return an output parameter from SQL Server via a stored procedure and c# Here is the proc in question, take a good look at it, do you see the problem? ALTER PROCEDURE [dbo].[Insert_UnknownCus…

    Read More...
    comments

    Last weekend I decided to do some maintenance on one of our database to see if I can get some freespace back. I use compression for some of the older tables and also reindexed the tables with a higher fill factor. After I was done, I got over 200 GB of…

    Read More...

    :: Next >>