|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 12:01 PM
Points: 9,
Visits: 151
|
|
vivdix (11/10/2009) Hi Florian,
Still waiting for your reply, may be you bit busy but please take some time to make it run on MSSQL 2K.
Thanks Vivek
Here's a reworked script versioned for SQL 2000 server using a table named 'LogTable'. I didn't test it out extensively, but it did at least produce the desired scripted data.
Regards, bitBIG
/******************************************************************
Author ====== Florian Reischl
Summary ======= Script to create a SELECT statement to script all data of a specified table
Parameters ==========
@table_name The name of the table to be scripted
@handle_big_binary If set to 1 the user defined function udf_varbintohexstr_big will be used to convert BINARY, VARBINARY and IMAGE data. For futher information see remarks.
@column_names If set to 0 only the values to be inserted will be scripted; the column names wont. This saves memory but the destination tables needs exactly the same columns in same order. If set to 1 also the names of the columns to insert the values into will be scripted.
Remarks ======= Attention: In case of colums of type BINARY, VARBINARY or IMAGE you either need the user defined function udf_varbintohexstr_big and option @handle_big_binary set to 1 or you risk a loss of data if the data of a cell are larger than 3998 bytes
Data type sql_variant is not supported.
History ======= V01.00.00.00 (2009-01-15) * Initial release V01.01.00.00 (2009-01-25) * Added support for IMAGE columns with user defined function udf_varbintohexstr_big V01.01.01.00 (2009-02-04) * Fixed bug for NTEXT and XML V01.02.00.00 (2009-02-21) * Added possibility to script column names
******************************************************************/
SET NOCOUNT ON
DECLARE @table_name SYSNAME DECLARE @handle_big_binary BIT DECLARE @column_names BIT
-- //////////////////// -- -> Configuration SET @table_name = 'dbo.LogTable' SET @handle_big_binary = 1 SET @column_names = 1 -- <- Configuration -- ////////////////////
DECLARE @object_id INT DECLARE @schema_id INT
--SELECT * FROM sys.all_objects --SELECT @object_id = object_id, @schema_id = schema_id -- FROM sys.tables -- WHERE object_id = OBJECT_ID(@table_name)
--SELECT @object_id = id, @schema_id = id -- FROM sysobjects -- WHERE id = OBJECT_ID(@table_name) SELECT @object_id = id, @schema_id = id FROM sysobjects WHERE id = OBJECT_ID(@table_name) and type = 'U'
DECLARE @columns TABLE (column_name SYSNAME, ordinal_position INT, data_type SYSNAME, data_length INT, is_nullable BIT)
-- Get all column information INSERT INTO @columns SELECT column_name, ordinal_position, data_type, character_maximum_length, CASE WHEN is_nullable = 'YES' THEN 1 ELSE 0 END FROM INFORMATION_SCHEMA.COLUMNS WHERE --TABLE_SCHEMA = OBJECT_NAME(@schema_id) -- AND TABLE_NAME = OBJECT_NAME(@object_id)
DECLARE @select VARCHAR(8000) DECLARE @insert VARCHAR(8000) DECLARE @crlf CHAR(2) DECLARE @sql VARCHAR(8000) DECLARE @first BIT DECLARE @pos INT SET @pos = 1
SET @crlf = CHAR(13) + CHAR(10)
WHILE EXISTS (SELECT TOP 1 * FROM @columns WHERE ordinal_position >= @pos) BEGIN DECLARE @column_name SYSNAME DECLARE @data_type SYSNAME DECLARE @data_length INT DECLARE @is_nullable BIT
-- Get information for the current column SELECT @column_name = column_name, @data_type = data_type, @data_length = data_length, @is_nullable = is_nullable FROM @columns WHERE ordinal_position = @pos
-- Create column select information to script the name of the source/destination column if configured IF (@select IS NULL) SET @select = ' ''' + QUOTENAME(@column_name) ELSE SET @select = @select + ','' + ' + @crlf + ' ''' + QUOTENAME(@column_name)
-- Handle NULL values SET @sql = ' ' SET @sql = @sql + 'CASE WHEN ' + QUOTENAME(@column_name) + ' IS NULL THEN ''NULL'' ELSE '
-- Handle the different data types IF (@data_type IN ('bigint', 'bit', 'decimal', 'float', 'int', 'money', 'numeric', 'real', 'smallint', 'smallmoney', 'tinyint')) BEGIN SET @sql = @sql + 'CONVERT(VARCHAR(40), ' + QUOTENAME(@column_name) + ')' END ELSE IF (@data_type IN ('char', 'nchar', 'nvarchar', 'varchar')) BEGIN SET @sql = @sql + ''''''''' + REPLACE(' + QUOTENAME(@column_name) + ', '''''''', '''''''''''') + ''''''''' END ELSE IF (@data_type = 'date') BEGIN SET @sql = @sql + '''CONVERT(DATE, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(3), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'time') BEGIN SET @sql = @sql + '''CONVERT(TIME, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(5), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'datetime') BEGIN SET @sql = @sql + '''CONVERT(DATETIME, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(8), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'datetime2') BEGIN SET @sql = @sql + '''CONVERT(DATETIME2, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(8), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'smalldatetime') BEGIN SET @sql = @sql + '''CONVERT(SMALLDATETIME, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(4), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'text') BEGIN SET @sql = @sql + ''''''''' + REPLACE(CONVERT(VARCHAR(8000), ' + QUOTENAME(@column_name) + '), '''''''', '''''''''''') + ''''''''' END ELSE IF (@data_type IN ('ntext', 'xml')) BEGIN SET @sql = @sql + ''''''''' + REPLACE(CONVERT(NVARCHAR(8000), ' + QUOTENAME(@column_name) + '), '''''''', '''''''''''') + ''''''''' END ELSE IF (@data_type IN ('binary', 'varbinary')) BEGIN -- Use udf_varbintohexstr_big if available to avoid cutted binary data IF (@handle_big_binary = 1) SET @sql = @sql + ' dbo.udf_varbintohexstr_big (' + QUOTENAME(@column_name) + ')' ELSE SET @sql = @sql + ' master.dbo.fn_varbintohexstr (' + QUOTENAME(@column_name) + ')' END ELSE IF (@data_type = 'timestamp') BEGIN SET @sql = @sql + '''CONVERT(TIMESTAMP, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(8), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'uniqueidentifier') BEGIN SET @sql = @sql + '''CONVERT(UNIQUEIDENTIFIER, '' + master.dbo.fn_varbintohexstr (CONVERT(BINARY(16), ' + QUOTENAME(@column_name) + ')) + '')''' END ELSE IF (@data_type = 'image') BEGIN -- Use udf_varbintohexstr_big if available to avoid cutted binary data IF (@handle_big_binary = 1) SET @sql = @sql + ' dbo.udf_varbintohexstr_big (CONVERT(VARBINARY(MAX), ' + QUOTENAME(@column_name) + '))' ELSE SET @sql = @sql + ' master.dbo.fn_varbintohexstr (CONVERT(VARBINARY(MAX), ' + QUOTENAME(@column_name) + '))' END ELSE BEGIN PRINT 'ERROR: Not supported data type: ' + @data_type RETURN END
SET @sql = @sql + ' END'
-- Script line end for finish or next column IF EXISTS (SELECT TOP 1 * FROM @columns WHERE ordinal_position > @pos) SET @sql = @sql + ' + '', '' +' ELSE SET @sql = @sql + ' + '
-- Remember the data script IF (@insert IS NULL) SET @insert = @sql ELSE SET @insert = @insert + @crlf + @sql
SET @pos = @pos + 1 END
-- Close the column names select SET @select = @select + ''' +'
-- Print the INSERT INTO part PRINT 'SELECT ''INSERT INTO ' + @table_name + ''' + '
-- Print the column names if configured IF (@column_names = 1) BEGIN PRINT ' ''('' + ' PRINT @select PRINT ' '')'' + ' END
PRINT ' '' VALUES ('' +'
-- Print the data scripting PRINT @insert
-- Script the end of the statement PRINT ' '')''' PRINT ' FROM ' + @table_name
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 7:58 AM
Points: 89,
Visits: 1,329
|
|
I've had an issue with this script duplicating columns when there is a gap in the colid of the syscolumns table in SQL Server 2000.
Is there an easy fix for this?
Thanks, -Robert
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, September 26, 2012 10:30 PM
Points: 1,
Visits: 0
|
|
| where is the code of udf_varbintohexstr_big?
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 12:01 PM
Points: 9,
Visits: 151
|
|
dave.villanueva25 (9/26/2012) where is the code of udf_varbintohexstr_big?
My test of the script on SQL 2000 didn't involve huge varbinary or image, hence I didn't look into this further. Regardless, this perhaps may be what you're referring to:
http://www.sqlservercentral.com/scripts/Hexadecimal/65997/
Be sure to look into the discussion/comments therein as well.
/bitBIG
|
|
|
|