Skip to main content

Show deprecated SQL Server Data Types

From SQL Server version 2008 forward the data types text, ntext and image have been deprecated. The code below will cursor through all the user databases on your server and bring back the database, tables and columns that use these data types, if they exist.


-- Find Deprecated datatypes in all databases
USE master;

IF EXISTS (SELECT 1 FROM tempdb..sysobjects WHERE id=OBJECT_ID('tempdb..#DataTypes')) DROP TABLE #DataTypes
CREATE TABLE #DataTypes(
    DBName VARCHAR(50)
    ,TableName VARCHAR(100)
    ,ColName VARCHAR(100)
    ,ExistingDataType VARCHAR(20)
    ,ChangeToDataType VARCHAR(20)
    )

Declare @DBName VARCHAR(50);
Declare @SQL VARCHAR(MAX);

DECLARE DeprecatedDTCur CURSOR FOR
        SELECT Name from sysdatabases where name not in ('master','model','msdb','tempdb') order by name

OPEN DeprecatedDTCur
FETCH NEXT FROM DeprecatedDTCur INTO @DBName;
WHILE @@FETCH_STATUS = 0
BEGIN
       PRINT 'Processing Database: ' + @DBName;
         SET @SQL = 'USE [' + @DBName + '];
         INSERT #DataTypes
         SELECT
                DB_Name() AS DBName
                ,O.NAME  AS TableName
                 ,col.NAME AS ColName
                 ,systypes.NAME    AS ExistingDataType
                 ,CASE systypes.NAME
                       WHEN ''text'' THEN  ''VARCHAR(MAX)''
                       WHEN ''nText'' THEN ''nVARCHAR(MAX)''
                       WHEN ''Image'' THEN ''VARBINARY(MAX)''
                 END AS ChangeToDataType
FROM syscolumns col
INNER JOIN sysobjects O
       ON col.id = O.id
INNER JOIN systypes
       ON col.xtype = systypes.xtype
WHERE O.Type = ''U''
       AND ObjectProperty(o.ID, N''IsMSShipped'') = 0
       AND systypes.NAME IN (
              ''text''
              ,''ntext''
              ,''image''
              )
ORDER BY O.NAME
       ,Col.NAME
          '
          --PRINT (@SQL)
          EXEC (@SQL)
       
        FETCH NEXT FROM DeprecatedDTCur INTO @DBName;
END;
CLOSE DeprecatedDTCur;
DEALLOCATE DeprecatedDTCur;

SELECT * FROM #DataTypes;


<end>




Comments

Popular posts from this blog

SAN performance testing using SQLIO

Introduction This document describes how to use Microsoft’s SQLIO to test disk/SAN performance. It is biased towards SQL Server – which uses primarily 64KB and 8KB data pages so I am running the tests using those cluster sizes, however, other sizes can be specified.  Download SQLIO from https://www.microsoft.com/en-gb/download/details.aspx?id=20163   SQLIO is a command line tool with no GUI so you need to open a command prompt at  C:\Program Files (x86)\SQLIO  after you have installed it. Configuration First of all edit param.txt so that you create the test file we will be using. The file needs to be bigger than the combined RAID and on-board disk caches. In this case we are using a 50GB file. The “ 2”  refers to the number of threads to use when testing, you don’t need to change this now. The “ 0x0”  value indicates that all CPUs should be used, which you probably don’t want to change either, “ #”  is a comment. The o...

How to configure the SSAS service to use a Domain Account

NB Updating SPNs in AD is not for the faint hearted plus I got inconsistent results from different servers. Do so at your own risk! If you need the SSAS account on a SQL Server to use a domain account rather than the local “virtual” account “NT Service\MSSQLServerOLAPService”. You may think you just give the account login permissions to the server, perhaps give it sysadmin SQL permissions too. However, if you try and connect to SSAS  remotely  you may get this error: Authentication failed. (Microsoft.AnalysisService.AdomdClient) The target principal name is incorrect (Microsoft.AnalysisService.AdomdClient) From Microsoft: “A Service Principle Name (SPN) uniquely identifies a service instance in an Active Directory domain when Kerberos is used to mutually authenticate client and service identities. An SPN is associated with the logon account under which the service instance runs. For client applications connecting to Analysis Services via Kerberos authentic...

The AcquireConnection method call to the connection manager failed with error code 0xC0202009

I had one of those annoying problems with executing a SSIS package that took up most of the morning today (and a couple of hours yesterday) where you get an error which many people have had, but none of their solutions work. I guess it is such a generic error code it can relate to many different issues hence dozens of different (wrong) suggestions. What confused matters was that although it completed successfully in SSDT, it failed when being validated on our newly created SSISDB Catalog. I didn't know whether it was a problem with the package and/or its parameters or the SSISDB Catalog installation or Environment. If you haven't set up an Integration Services Catalog (a new feature of SQL 2012) yet I definitely think it is worth looking at. I found an excellent guide here that takes you through it all. In our case we had two connection managers, the source was a table in a SQL Server 2012 database and the destination a table in an Access 2010 database. The server with the ...