sqlcmd -S DB\SQLEXPRESS -d DBNAME -E -Q "QUERY HERE" -s "," -o "C:\Users\User\Desktop\Export.txt"
A blog about SQL Article | Dynamic Query | SQL Hard Query | SQL deadlock | SQL Trigger | Insert | Update | Delete Query
Showing posts with label Sql Server. Show all posts
Showing posts with label Sql Server. Show all posts
Friday, 27 August 2021
How to call procedure in task scheduler in windows
sqlcmd -Q "exec SP_Test" -S DC_SRVR\SQLEXPRESS -d DBNAME -U sa -P PASSWORD -o path\yourOutput.txt
Generate Sql Table All Columns In Comma Separated List In Sql Server
ALTER FUNCTION [dbo].[ReturnTableCommaSeparted]
(
@TABLENAME VARCHAR(max) = 'table_name'
)
RETURNS @RETURN_LIST TABLE
(
TABLE_SCHEMA VARCHAR(MAX) NOT NULL,
TABLE_NAME VARCHAR(MAX) NOT NULL,
Columns_List VARCHAR(MAX) NOT NULL
)
AS
BEGIN
INSERT INTO @RETURN_LIST
(
TABLE_SCHEMA,
TABLE_NAME,
Columns_List
)
SELECT TABLE_SCHEMA,
TABLE_NAME,
'SELECT ' + STUFF(
(
SELECT ', ' + C.COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS AS C
WHERE C.TABLE_SCHEMA = T.TABLE_SCHEMA
AND C.TABLE_NAME = T.TABLE_NAME
ORDER BY C.ORDINAL_POSITION
FOR XML PATH('')
),
1,
2,
''
)
+ ' FROM ' + T.TABLE_NAME + ' WITH(NOLOCK) ' AS Columns_List
FROM INFORMATION_SCHEMA.TABLES AS T
WHERE (
@TABLENAME = ''
OR T.TABLE_NAME = @TABLENAME
);
RETURN;
(
@TABLENAME VARCHAR(max) = 'table_name'
)
RETURNS @RETURN_LIST TABLE
(
TABLE_SCHEMA VARCHAR(MAX) NOT NULL,
TABLE_NAME VARCHAR(MAX) NOT NULL,
Columns_List VARCHAR(MAX) NOT NULL
)
AS
BEGIN
INSERT INTO @RETURN_LIST
(
TABLE_SCHEMA,
TABLE_NAME,
Columns_List
)
SELECT TABLE_SCHEMA,
TABLE_NAME,
'SELECT ' + STUFF(
(
SELECT ', ' + C.COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS AS C
WHERE C.TABLE_SCHEMA = T.TABLE_SCHEMA
AND C.TABLE_NAME = T.TABLE_NAME
ORDER BY C.ORDINAL_POSITION
FOR XML PATH('')
),
1,
2,
''
)
+ ' FROM ' + T.TABLE_NAME + ' WITH(NOLOCK) ' AS Columns_List
FROM INFORMATION_SCHEMA.TABLES AS T
WHERE (
@TABLENAME = ''
OR T.TABLE_NAME = @TABLENAME
);
RETURN;
END;
Query To Access Column Description In Sql Server
DECLARE @TableName VARCHAR(MAX)='Constant'
SELECT
st.name [Table],
sc.name [Column],
sep.value [Description]
from sys.tables st
inner join sys.columns sc on st.object_id = sc.object_id
left join sys.extended_properties sep on st.object_id = sep.major_id
and sc.column_id = sep.minor_id
and sep.name = 'MS_Description'
where st.name = @TableName
SELECT
st.name [Table],
sc.name [Column],
sep.value [Description]
from sys.tables st
inner join sys.columns sc on st.object_id = sc.object_id
left join sys.extended_properties sep on st.object_id = sep.major_id
and sc.column_id = sep.minor_id
and sep.name = 'MS_Description'
where st.name = @TableName
Split String Function Comma Separated in Sql Server
ALTER FUNCTION [dbo].[SplitString]
(
@Input NVARCHAR(MAX),
@Character CHAR(1)
)
RETURNS @Output TABLE (
Item NVARCHAR(1000)
)
AS
BEGIN
DECLARE @StartIndex INT, @EndIndex INT
SET @StartIndex = 1
IF SUBSTRING(@Input, LEN(@Input) - 1, LEN(@Input)) <> @Character
BEGIN
SET @Input = @Input + @Character
END
WHILE CHARINDEX(@Character, @Input) > 0
BEGIN
SET @EndIndex = CHARINDEX(@Character, @Input)
INSERT INTO @Output(Item)
SELECT SUBSTRING(@Input, @StartIndex, @EndIndex - 1)
SET @Input = SUBSTRING(@Input, @EndIndex + 1, LEN(@Input))
END
RETURN
END
GO
How to split varchar value and interger value in sql server
DECLARE @RESULT VARCHAR(50);
DECLARE @data VARCHAR(100) = 'split123resultmyresult456';
DECLARE @RES_VARCHARVALUE VARCHAR(50) = '';
DECLARE @RES_INTVALUE VARCHAR(50) = '';
DECLARE DefaultCursor CURSOR LOCAL FOR
WITH CTE
AS
(
SELECT STUFF(@data, 1, 1, '') AS TXT, LEFT(@data, 1) AS Col1
UNION ALL
SELECT STUFF(TXT, 1, 1, '') AS TXT, LEFT(TXT, 1) AS Col1 FROM CTE WHERE LEN(TXT) > 0
)
SELECT Col1 FROM CTE;
OPEN DefaultCursor;
FETCH NEXT FROM DefaultCursor
INTO @RESULT;
WHILE @@FETCH_STATUS = 0
BEGIN
PRINT @RESULT
IF( @RESULT NOT LIKE '%[^0-9]%' )
BEGIN SET @RES_VARCHARVALUE = @RES_VARCHARVALUE + @RESULT END
ELSE
BEGIN SET @RES_INTVALUE = @RES_INTVALUE + @RESULT END
FETCH NEXT FROM DefaultCursor
INTO @RESULT
END;
CLOSE DefaultCursor
DEALLOCATE DefaultCursor
SELECT @RES_VARCHARVALUE
SELECT @RES_INTVALUE
DECLARE @data VARCHAR(100) = 'split123resultmyresult456';
DECLARE @RES_VARCHARVALUE VARCHAR(50) = '';
DECLARE @RES_INTVALUE VARCHAR(50) = '';
DECLARE DefaultCursor CURSOR LOCAL FOR
WITH CTE
AS
(
SELECT STUFF(@data, 1, 1, '') AS TXT, LEFT(@data, 1) AS Col1
UNION ALL
SELECT STUFF(TXT, 1, 1, '') AS TXT, LEFT(TXT, 1) AS Col1 FROM CTE WHERE LEN(TXT) > 0
)
SELECT Col1 FROM CTE;
OPEN DefaultCursor;
FETCH NEXT FROM DefaultCursor
INTO @RESULT;
WHILE @@FETCH_STATUS = 0
BEGIN
PRINT @RESULT
IF( @RESULT NOT LIKE '%[^0-9]%' )
BEGIN SET @RES_VARCHARVALUE = @RES_VARCHARVALUE + @RESULT END
ELSE
BEGIN SET @RES_INTVALUE = @RES_INTVALUE + @RESULT END
FETCH NEXT FROM DefaultCursor
INTO @RESULT
END;
CLOSE DefaultCursor
DEALLOCATE DefaultCursor
SELECT @RES_VARCHARVALUE
SELECT @RES_INTVALUE
How to Linked Server With Static IP in Sql Server
EXEC master.dbo.sp_addlinkedserver
@server = N'11.11.11.11',
@srvproduct=N'SQLNCLI11',
@provider=N'SQLNCLI11',
@datasrc=N'11.11.11.11'
EXEC sp_addlinkedsrvlogin
'11.11.11.11',
'false',
'sa',
'sa',
'password'
@server = N'11.11.11.11',
@srvproduct=N'SQLNCLI11',
@provider=N'SQLNCLI11',
@datasrc=N'11.11.11.11'
EXEC sp_addlinkedsrvlogin
'11.11.11.11',
'false',
'sa',
'sa',
'password'
How to Generate Table Data Script With Condition Sql Server
ALTER PROCEDURE [dbo].[SP_Generate_Table_Data]
(
@table_name varchar(776)='mailsetting', -- The table/view for which the INSERT statements will be generated using the existing data
@target_table varchar(776) = NULL, -- Use this parameter to specify a different table name into which the data will be inserted
@include_column_list bit = 1, -- Use this parameter to include/ommit column list in the generated INSERT statement
@from varchar(800) =null, -- Use this parameter to filter the rows based on a filter condition (using WHERE)
@include_timestamp bit = 0, -- Specify 1 for this parameter, if you want to include the TIMESTAMP/ROWVERSION column's data in the INSERT statement
@debug_mode bit = 0, -- If @debug_mode is set to 1, the SQL statements constructed by this procedure will be printed for later examination
@owner varchar(64) = NULL, -- Use this parameter if you are not the owner of the table
@ommit_images bit = 0, -- Use this parameter to generate INSERT statements by omitting the 'image' columns
@ommit_identity bit = 0, -- Use this parameter to ommit the identity columns
@top int = NULL, -- Use this parameter to generate INSERT statements only for the TOP n rows
@cols_to_include varchar(8000) = NULL, -- List of columns to be included in the INSERT statement
@cols_to_exclude varchar(8000) = NULL, -- List of columns to be excluded from the INSERT statement
@disable_constraints bit = 0, -- When 1, disables foreign key constraints and enables them after the INSERT statements
@ommit_computed_cols bit = 0 -- When 1, computed columns will not be included in the INSERT statement
)
AS
BEGIN
--How to Generate Table Data Script With Condition Sql
/***********************************************************************************************************
Procedure: sp_generate_inserts (Build 22)
(Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved.)
Purpose: To generate INSERT statements from existing data.
These INSERTS can be executed to regenerate the data at some other location.
This procedure is also useful to create a database setup, where in you can
script your data along with your table definitions.
Written by: Narayana Vyas Kondreddi
http://vyaskn.tripod.com
Acknowledgements:
Divya Kalra -- For beta testing
Mark Charsley -- For reporting a problem with scripting uniqueidentifier columns with NULL values
Artur Zeygman -- For helping me simplify a bit of code for handling non-dbo owned tables
Joris Laperre -- For reporting a regression bug in handling text/ntext columns
Tested on: SQL Server 7.0 and SQL Server 2000
Date created: January 17th 2001 21:52 GMT
Date modified: May 1st 2002 19:50 GMT
Email: vyaskn@hotmail.com
NOTE: This procedure may not work with tables with too many columns.
Results can be unpredictable with huge text columns or SQL Server 2000's sql_variant data types
Whenever possible, Use @include_column_list parameter to ommit column list in the INSERT statement, for better results
IMPORTANT: This procedure is not tested with internation data (Extended characters or Unicode). If needed
you might want to convert the datatypes of character variables in this procedure to their respective unicode counterparts
like nchar and nvarchar
Example 1: To generate INSERT statements for table 'titles':
EXEC sp_generate_inserts 'titles'
Example 2: To ommit the column list in the INSERT statement: (Column list is included by default)
IMPORTANT: If you have too many columns, you are advised to ommit column list, as shown below,
to avoid erroneous results
EXEC sp_generate_inserts 'titles', @include_column_list = 0
Example 3: To generate INSERT statements for 'titlesCopy' table from 'titles' table:
EXEC sp_generate_inserts 'titles', 'titlesCopy'
Example 4: To generate INSERT statements for 'titles' table for only those titles
which contain the word 'Computer' in them:
NOTE: Do not complicate the FROM or WHERE clause here. It's assumed that you are good with T-SQL if you are using this parameter
EXEC sp_generate_inserts 'titles', @from = "from titles where title like '%Computer%'"
Example 5: To specify that you want to include TIMESTAMP column's data as well in the INSERT statement:
(By default TIMESTAMP column's data is not scripted)
EXEC sp_generate_inserts 'titles', @include_timestamp = 1
Example 6: To print the debug information:
EXEC sp_generate_inserts 'titles', @debug_mode = 1
Example 7: If you are not the owner of the table, use @owner parameter to specify the owner name
To use this option, you must have SELECT permissions on that table
EXEC sp_generate_inserts Nickstable, @owner = 'Nick'
Example 8: To generate INSERT statements for the rest of the columns excluding images
When using this otion, DO NOT set @include_column_list parameter to 0.
EXEC sp_generate_inserts imgtable, @ommit_images = 1
Example 9: To generate INSERT statements excluding (ommiting) IDENTITY columns:
(By default IDENTITY columns are included in the INSERT statement)
EXEC sp_generate_inserts mytable, @ommit_identity = 1
Example 10: To generate INSERT statements for the TOP 10 rows in the table:
EXEC sp_generate_inserts mytable, @top = 10
Example 11: To generate INSERT statements with only those columns you want:
EXEC sp_generate_inserts titles, @cols_to_include = "'title','title_id','au_id'"
Example 12: To generate INSERT statements by omitting certain columns:
EXEC sp_generate_inserts titles, @cols_to_exclude = "'title','title_id','au_id'"
Example 13: To avoid checking the foreign key constraints while loading data with INSERT statements:
EXEC sp_generate_inserts titles, @disable_constraints = 1
Example 14: To exclude computed columns from the INSERT statement:
EXEC sp_generate_inserts MyTable, @ommit_computed_cols = 1
***********************************************************************************************************/
SET NOCOUNT ON
--Making sure user only uses either @cols_to_include or @cols_to_exclude
IF ((@cols_to_include IS NOT NULL) AND (@cols_to_exclude IS NOT NULL))
BEGIN
RAISERROR('Use either @cols_to_include or @cols_to_exclude. Do not use both the parameters at once',16,1)
RETURN -1 --Failure. Reason: Both @cols_to_include and @cols_to_exclude parameters are specified
END
--Making sure the @cols_to_include and @cols_to_exclude parameters are receiving values in proper format
IF ((@cols_to_include IS NOT NULL) AND (PATINDEX('''%''',@cols_to_include) = 0))
BEGIN
RAISERROR('Invalid use of @cols_to_include property',16,1)
PRINT 'Specify column names surrounded by single quotes and separated by commas'
PRINT 'Eg: EXEC sp_generate_inserts titles, @cols_to_include = "''title_id'',''title''"'
RETURN -1 --Failure. Reason: Invalid use of @cols_to_include property
END
IF ((@cols_to_exclude IS NOT NULL) AND (PATINDEX('''%''',@cols_to_exclude) = 0))
BEGIN
RAISERROR('Invalid use of @cols_to_exclude property',16,1)
PRINT 'Specify column names surrounded by single quotes and separated by commas'
PRINT 'Eg: EXEC sp_generate_inserts titles, @cols_to_exclude = "''title_id'',''title''"'
RETURN -1 --Failure. Reason: Invalid use of @cols_to_exclude property
END
--Checking to see if the database name is specified along wih the table name
--Your database context should be local to the table for which you want to generate INSERT statements
--specifying the database name is not allowed
IF (PARSENAME(@table_name,3)) IS NOT NULL
BEGIN
RAISERROR('Do not specify the database name. Be in the required database and just specify the table name.',16,1)
RETURN -1 --Failure. Reason: Database name is specified along with the table name, which is not allowed
END
--Checking for the existence of 'user table' or 'view'
--This procedure is not written to work on system tables
--To script the data in system tables, just create a view on the system tables and script the view instead
IF @owner IS NULL
BEGIN
IF ((OBJECT_ID(@table_name,'U') IS NULL) AND (OBJECT_ID(@table_name,'V') IS NULL))
BEGIN
RAISERROR('User table or view not found.',16,1)
PRINT 'You may see this error, if you are not the owner of this table or view. In that case use @owner parameter to specify the owner name.'
PRINT 'Make sure you have SELECT permission on that table or view.'
RETURN -1 --Failure. Reason: There is no user table or view with this name
END
END
ELSE
BEGIN
IF NOT EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = @table_name AND (TABLE_TYPE = 'BASE TABLE' OR TABLE_TYPE = 'VIEW') AND TABLE_SCHEMA = @owner)
BEGIN
RAISERROR('User table or view not found.',16,1)
PRINT 'You may see this error, if you are not the owner of this table. In that case use @owner parameter to specify the owner name.'
PRINT 'Make sure you have SELECT permission on that table or view.'
RETURN -1 --Failure. Reason: There is no user table or view with this name
END
END
--Variable declarations
DECLARE @Column_ID int,
@Column_List varchar(8000),
@Column_Name varchar(128),
@Start_Insert varchar(786),
@Data_Type varchar(128),
@Actual_Values varchar(8000), --This is the string that will be finally executed to generate INSERT statements
@IDN varchar(128) --Will contain the IDENTITY column's name in the table
--Variable Initialization
SET @IDN = ''
SET @Column_ID = 0
SET @Column_Name = ''
SET @Column_List = ''
SET @Actual_Values = ''
IF @owner IS NULL
BEGIN
SET @Start_Insert = 'INSERT INTO ' + '[' + RTRIM(COALESCE(@target_table,@table_name)) + ']'
END
ELSE
BEGIN
SET @Start_Insert = 'INSERT ' + '[' + LTRIM(RTRIM(@owner)) + '].' + '[' + RTRIM(COALESCE(@target_table,@table_name)) + ']'
END
--To get the first column's ID
SELECT @Column_ID = MIN(ORDINAL_POSITION)
FROM INFORMATION_SCHEMA.COLUMNS (NOLOCK)
WHERE TABLE_NAME = @table_name AND
(@owner IS NULL OR TABLE_SCHEMA = @owner)
--Loop through all the columns of the table, to get the column names and their data types
WHILE @Column_ID IS NOT NULL
BEGIN
SELECT @Column_Name = QUOTENAME(COLUMN_NAME),
@Data_Type = DATA_TYPE
FROM INFORMATION_SCHEMA.COLUMNS (NOLOCK)
WHERE ORDINAL_POSITION = @Column_ID AND
TABLE_NAME = @table_name AND
(@owner IS NULL OR TABLE_SCHEMA = @owner)
IF @cols_to_include IS NOT NULL --Selecting only user specified columns
BEGIN
IF CHARINDEX( '''' + SUBSTRING(@Column_Name,2,LEN(@Column_Name)-2) + '''',@cols_to_include) = 0
BEGIN
GOTO SKIP_LOOP
END
END
IF @cols_to_exclude IS NOT NULL --Selecting only user specified columns
BEGIN
IF CHARINDEX( '''' + SUBSTRING(@Column_Name,2,LEN(@Column_Name)-2) + '''',@cols_to_exclude) <> 0
BEGIN
GOTO SKIP_LOOP
END
END
--Making sure to output SET IDENTITY_INSERT ON/OFF in case the table has an IDENTITY column
IF (SELECT COLUMNPROPERTY( OBJECT_ID(QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + @table_name),SUBSTRING(@Column_Name,2,LEN(@Column_Name) - 2),'IsIdentity')) = 1
BEGIN
IF @ommit_identity = 0 --Determing whether to include or exclude the IDENTITY column
SET @IDN = @Column_Name
ELSE
GOTO SKIP_LOOP
END
--Making sure whether to output computed columns or not
IF @ommit_computed_cols = 1
BEGIN
IF (SELECT COLUMNPROPERTY( OBJECT_ID(QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + @table_name),SUBSTRING(@Column_Name,2,LEN(@Column_Name) - 2),'IsComputed')) = 1
BEGIN
GOTO SKIP_LOOP
END
END
--Tables with columns of IMAGE data type are not supported for obvious reasons
IF(@Data_Type in ('image'))
BEGIN
IF (@ommit_images = 0)
BEGIN
RAISERROR('Tables with image columns are not supported.',16,1)
PRINT 'Use @ommit_images = 1 parameter to generate INSERTs for the rest of the columns.'
PRINT 'DO NOT ommit Column List in the INSERT statements. If you ommit column list using @include_column_list=0, the generated INSERTs will fail.'
RETURN -1 --Failure. Reason: There is a column with image data type
END
ELSE
BEGIN
GOTO SKIP_LOOP
END
END
--Determining the data type of the column and depending on the data type, the VALUES part of
--the INSERT statement is generated. Care is taken to handle columns with NULL values. Also
--making sure, not to lose any data from flot, real, money, smallmomey, datetime columns
SET @Actual_Values = @Actual_Values +
CASE
WHEN @Data_Type IN ('char','varchar','nchar','nvarchar')
THEN
'COALESCE('''''''' + REPLACE(RTRIM(' + @Column_Name + '),'''''''','''''''''''')+'''''''',''NULL'')'
WHEN @Data_Type IN ('datetime','smalldatetime')
THEN
'COALESCE('''''''' + RTRIM(CONVERT(char,' + @Column_Name + ',109))+'''''''',''NULL'')'
WHEN @Data_Type IN ('uniqueidentifier')
THEN
'COALESCE('''''''' + REPLACE(CONVERT(char(255),RTRIM(' + @Column_Name + ')),'''''''','''''''''''')+'''''''',''NULL'')'
WHEN @Data_Type IN ('text','ntext')
THEN
'COALESCE('''''''' + REPLACE(CONVERT(char(8000),' + @Column_Name + '),'''''''','''''''''''')+'''''''',''NULL'')'
WHEN @Data_Type IN ('binary','varbinary')
THEN
'COALESCE(RTRIM(CONVERT(char,' + 'CONVERT(int,' + @Column_Name + '))),''NULL'')'
WHEN @Data_Type IN ('timestamp','rowversion')
THEN
CASE
WHEN @include_timestamp = 0
THEN
'''DEFAULT'''
ELSE
'COALESCE(RTRIM(CONVERT(char,' + 'CONVERT(int,' + @Column_Name + '))),''NULL'')'
END
WHEN @Data_Type IN ('float','real','money','smallmoney')
THEN
'COALESCE(LTRIM(RTRIM(' + 'CONVERT(char, ' + @Column_Name + ',2)' + ')),''NULL'')'
ELSE
'COALESCE(LTRIM(RTRIM(' + 'CONVERT(char, ' + @Column_Name + ')' + ')),''NULL'')'
END + '+' + ''',''' + ' + '
--Generating the column list for the INSERT statement
SET @Column_List = @Column_List + @Column_Name + ','
SKIP_LOOP: --The label used in GOTO
SELECT @Column_ID = MIN(ORDINAL_POSITION)
FROM INFORMATION_SCHEMA.COLUMNS (NOLOCK)
WHERE TABLE_NAME = @table_name AND
ORDINAL_POSITION > @Column_ID AND
(@owner IS NULL OR TABLE_SCHEMA = @owner)
--Loop ends here!
END
--To get rid of the extra characters that got concatenated during the last run through the loop
SET @Column_List = LEFT(@Column_List,len(@Column_List) - 1)
SET @Actual_Values = LEFT(@Actual_Values,len(@Actual_Values) - 6)
IF LTRIM(@Column_List) = ''
BEGIN
RAISERROR('No columns to select. There should at least be one column to generate the output',16,1)
RETURN -1 --Failure. Reason: Looks like all the columns are ommitted using the @cols_to_exclude parameter
END
--Forming the final string that will be executed, to output the INSERT statements
IF (@include_column_list <> 0)
BEGIN
SET @Actual_Values =
'SELECT ' +
CASE WHEN @top IS NULL OR @top < 0 THEN '' ELSE ' TOP ' + LTRIM(STR(@top)) + ' ' END +
'''' + RTRIM(@Start_Insert) +
' ''+' + '''(' + RTRIM(@Column_List) + '''+' + ''')''' +
' +''VALUES(''+ ' + @Actual_Values + '+'')''' + ' ' +
COALESCE(@from,' FROM ' + CASE WHEN @owner IS NULL THEN '' ELSE '[' + LTRIM(RTRIM(@owner)) + '].' END + '[' + rtrim(@table_name) + ']' + '(NOLOCK)')
END
ELSE IF (@include_column_list = 0)
BEGIN
SET @Actual_Values =
'SELECT ' +
CASE WHEN @top IS NULL OR @top < 0 THEN '' ELSE ' TOP ' + LTRIM(STR(@top)) + ' ' END +
'''' + RTRIM(@Start_Insert) +
' '' +''VALUES(''+ ' + @Actual_Values + '+'')''' + ' ' +
COALESCE(@from,' FROM ' + CASE WHEN @owner IS NULL THEN '' ELSE '[' + LTRIM(RTRIM(@owner)) + '].' END + '[' + rtrim(@table_name) + ']' + '(NOLOCK)')
END
--Determining whether to ouput any debug information
IF @debug_mode =1
BEGIN
PRINT '/*****START OF DEBUG INFORMATION*****'
PRINT 'Beginning of the INSERT statement:'
PRINT @Start_Insert
PRINT ''
PRINT 'The column list:'
PRINT @Column_List
PRINT ''
PRINT 'The SELECT statement executed to generate the INSERTs'
PRINT @Actual_Values
PRINT ''
PRINT '*****END OF DEBUG INFORMATION*****/'
PRINT ''
END
PRINT '--INSERTs generated by ''sp_generate_inserts'' stored procedure written by Vyas'
PRINT '--Build number: 22'
PRINT '--Problems/Suggestions? Contact Vyas @ vyaskn@hotmail.com'
PRINT '--http://vyaskn.tripod.com'
PRINT ''
PRINT 'SET NOCOUNT ON'
PRINT ''
--Determining whether to print IDENTITY_INSERT or not
IF (@IDN <> '')
BEGIN
PRINT 'SET IDENTITY_INSERT ' + QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + QUOTENAME(@table_name) + ' ON'
PRINT 'GO'
PRINT ''
END
IF @disable_constraints = 1 AND (OBJECT_ID(QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + @table_name, 'U') IS NOT NULL)
BEGIN
IF @owner IS NULL
BEGIN
SELECT 'ALTER TABLE ' + QUOTENAME(COALESCE(@target_table, @table_name)) + ' NOCHECK CONSTRAINT ALL' AS '--Code to disable constraints temporarily'
END
ELSE
BEGIN
SELECT 'ALTER TABLE ' + QUOTENAME(@owner) + '.' + QUOTENAME(COALESCE(@target_table, @table_name)) + ' NOCHECK CONSTRAINT ALL' AS '--Code to disable constraints temporarily'
END
PRINT 'GO'
END
PRINT ''
PRINT 'PRINT ''Inserting values into ' + '[' + RTRIM(COALESCE(@target_table,@table_name)) + ']' + ''''
--All the hard work pays off here!!! You'll get your INSERT statements, when the next line executes!
EXEC (@Actual_Values)
PRINT 'PRINT ''Done'''
PRINT ''
IF @disable_constraints = 1 AND (OBJECT_ID(QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + @table_name, 'U') IS NOT NULL)
BEGIN
IF @owner IS NULL
BEGIN
SELECT 'ALTER TABLE ' + QUOTENAME(COALESCE(@target_table, @table_name)) + ' CHECK CONSTRAINT ALL' AS '--Code to enable the previously disabled constraints'
END
ELSE
BEGIN
SELECT 'ALTER TABLE ' + QUOTENAME(@owner) + '.' + QUOTENAME(COALESCE(@target_table, @table_name)) + ' CHECK CONSTRAINT ALL' AS '--Code to enable the previously disabled constraints'
END
PRINT 'GO'
END
PRINT ''
IF (@IDN <> '')
BEGIN
PRINT 'SET IDENTITY_INSERT ' + QUOTENAME(COALESCE(@owner,USER_NAME())) + '.' + QUOTENAME(@table_name) + ' OFF'
PRINT 'GO'
END
PRINT 'SET NOCOUNT OFF'
SET NOCOUNT OFF
RETURN 0 --Success. We are done!
END
Dynamically Drop all databases in sql server
-- All Drop all databases from sql server
ALTER PROCEDURE SP_Drop_AllDB
AS
BEGIN
DECLARE @command NVARCHAR(MAX);
SET @command = N'';
SELECT @command
= @command
+ N'ALTER DATABASE [' + [name] + N'] SET single_user with rollback immediate;' + CHAR(13) + CHAR(10)
+ N'DROP DATABASE [' + [name] + N'];' + CHAR(13) + CHAR(10)
FROM [master].[sys].[databases]
WHERE [name] NOT IN ( 'master', 'model', 'msdb', 'tempdb', 'ReportServer' );
SELECT @command;
--EXECUTE sp_executesql @command
END
ALTER PROCEDURE SP_Drop_AllDB
AS
BEGIN
DECLARE @command NVARCHAR(MAX);
SET @command = N'';
SELECT @command
= @command
+ N'ALTER DATABASE [' + [name] + N'] SET single_user with rollback immediate;' + CHAR(13) + CHAR(10)
+ N'DROP DATABASE [' + [name] + N'];' + CHAR(13) + CHAR(10)
FROM [master].[sys].[databases]
WHERE [name] NOT IN ( 'master', 'model', 'msdb', 'tempdb', 'ReportServer' );
SELECT @command;
--EXECUTE sp_executesql @command
END
Dynamic Creation Of Insert Update Delete Stored Procedure in Sql Server
DECLARE
@TABLENAME Varchar(50) ='TABLENAME'
BEGIN
DECLARE @DBNAME Varchar(50)
DECLARE @INSERT_SP_NAME Varchar(50),
@UPDATE_SP_NAME Varchar(50),
@DELETE_SP_NAME Varchar(50)
DECLARE @TABLECOLUMNPARAMETER VARCHAR(MAX)='',
@TABLECOLUMNS Varchar(MAX)='',
@TABLECOLUMNVARIABLES Varchar(MAX)='';
DECLARE @TABLECOLS Varchar(MAX)='',
@TABLEINSERTPARAMETER Varchar(MAX)='';
DECLARE @SPACE Varchar(50)=REPLICATE(' ', 4)
DECLARE @COLNAME Varchar(100) ;
DECLARE @COLVARIABLE Varchar(100) ;
DECLARE @COLPARAMETER Varchar(100) ;
DECLARE @STRSPTEXT Varchar(MAX)='';
DECLARE @UPDATECOLS Varchar(MAX)='';
DECLARE @DELETEPARACOLS Varchar(MAX)='';
DECLARE @WHERECOLS Varchar(MAX)='';
Set @TABLENAME = SubString(@TABLENAME,CharIndex('.',@TABLENAME)+1, Len(@TABLENAME))
Set @INSERT_SP_NAME = '[dbo].[sp_' + lower(@TABLENAME) +'_insert]' ;
Set @UPDATE_SP_NAME = '[dbo].[sp_' + lower(@TABLENAME) +'_update]' ;
Set @DELETE_SP_NAME = '[dbo].[sp_' + lower(@TABLENAME) +'_delete]' ;
SET NOCOUNT ON
IF NOT EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE' AND TABLE_NAME=@TABLENAME)
BEGIN
PRINT 'Sorry!! Table Name ( ' + @TABLENAME + ' ) doe''s exists in the database. '
END
------------------------------------------ Get all Primary KEY columns & Data Types For a table ------------------------------------------------------
SELECT t.name as 'Table',
c.colid ,
'[' + c.name + ']' as 'ColumnName',
'@'+c.name as 'ColumnVariable',
systypes.name +
CASE When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),c.length) +')' Else '' end as 'DataType' ,
'@'+c.name + ' ' + systypes.name +
CASE When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),c.length) +')' Else '' end as 'ColumnParameter'
INTO #TEMP_PK_TABLE
FROM sysindexes i, sysobjects t, sysindexkeys k, syscolumns c, systypes
WHERE i.id = t.id AND
i.indid = k.indid AND i.id = k.ID And
c.id = t.id AND c.colid = k.colid AND
i.indid BETWEEN 1 And 254 AND
c.xusertype = systypes.xusertype AND
(i.status & 2048) = 2048 AND t.id = OBJECT_ID(@TABLENAME)
SELECT distinct
sysobjects.name as 'Table', syscolumns.colid ,'[' + syscolumns.name + ']' as 'ColumnName',
'@'+syscolumns.name as 'ColumnVariable',systypes.name +
Case When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),Case When syscolumns.length=-1 Then 4000 else syscolumns.length end) +')'
ELSE '' end as 'DataType' ,
'@'+syscolumns.name + ' ' + systypes.name +
Case When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),Case When syscolumns.length=-1 Then 4000 else syscolumns.length end) +')'
ELSE '' end as 'ColumnParameter'
Into #tmp_Structure
From sysobjects , syscolumns , systypes
Where sysobjects.id = syscolumns.id
and syscolumns.xusertype = systypes.xusertype and sysobjects.xtype = 'u' and sysobjects.name = @TABLENAME AND syscolumns.name !=
(
SELECT c.name AS ColumnName FROM sys.columns AS c INNER JOIN sys.tables AS t ON t.[object_id] = c.[object_id] WHERE c.is_identity = 1 AND t.name=@TABLENAME
)
ORDER BY syscolumns.colid
SELECT distinct
sysobjects.name as 'Table',
syscolumns.colid ,
'[' + syscolumns.name + ']' as 'ColumnName',
'@'+syscolumns.name as 'ColumnVariable',
systypes.name +
Case When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),Case When syscolumns.length=-1 Then 4000 else syscolumns.length end) +')'
ELSE '' end as 'DataType' ,'@'+syscolumns.name + ' ' + systypes.name +
Case When systypes.xusertype in (165,167,175,231,239 ) Then '(' + Convert(varchar(10),Case When syscolumns.length=-1 Then 4000 else syscolumns.length end) +')'
ELSE '' end as 'ColumnParameter'
Into #tmp_Structure1
From sysobjects , syscolumns , systypes
Where sysobjects.id = syscolumns.id
and syscolumns.xusertype = systypes.xusertype and sysobjects.xtype = 'u' and sysobjects.name = @TABLENAME
ORDER by syscolumns.colid
/* Read the table structure and populate variables*/
DECLARE SpText_Cursor Cursor For
Select ColumnName, ColumnVariable, ColumnParameter
From #tmp_Structure
Open SpText_Cursor
Fetch Next From SpText_Cursor Into @COLNAME, @COLVARIABLE, @COLPARAMETER
WHILE @@FETCH_STATUS = 0
Begin
SET @TABLECOLUMNS = @TABLECOLUMNS + @COLNAME + CHAR(13) + @SPACE + @SPACE + ',' ;
SET @TABLECOLUMNPARAMETER = @TABLECOLUMNPARAMETER + @COLPARAMETER + CHAR(13) + @SPACE + ',' ;
SET @TABLECOLUMNVARIABLES = @TABLECOLUMNVARIABLES + @COLVARIABLE + CHAR(13) + @SPACE + @SPACE + ',' ;
SET @TABLECOLS = @TABLECOLS + @COLNAME + ',' ;
SET @UPDATECOLS = @UPDATECOLS + @COLNAME + ' = ' + @COLVARIABLE + CHAR(13) + @SPACE + @SPACE + ',' ;
Fetch Next From SpText_Cursor Into @COLNAME, @COLVARIABLE, @COLPARAMETER
End
Close SpText_Cursor
Deallocate SpText_Cursor
---------------------------------------------------------- Update Parameter -------------------------------------------------------
if exists(select * from #TEMP_PK_TABLE)
BEGIN
SET @TABLEINSERTPARAMETER=''
DECLARE SpText_Cursor1 Cursor For
SELECT ColumnParameter
FROM #tmp_Structure1
Open SpText_Cursor1
FETCH NEXT FROM SpText_Cursor1 Into @COLPARAMETER
While @@FETCH_STATUS = 0
BEGIN
SET @TABLEINSERTPARAMETER = @TABLEINSERTPARAMETER + @COLPARAMETER + CHAR(13) + @SPACE + ',' ;
FETCH Next From SpText_Cursor1 Into @COLPARAMETER
END
CLOSE SpText_Cursor1
DEALLOCATE SpText_Cursor1
END
----------------------------------------------------------- End for update parameter -----------------------------------------------------
----------------------------------------------------------- Read the Primary Keys from the table and populate variables ------------------
DECLARE SpPKText_Cursor Cursor For
SELECT ColumnName, ColumnVariable, ColumnParameter
FROM #TEMP_PK_TABLE
OPEN SpPKText_Cursor
FETCH Next From SpPKText_Cursor Into @COLNAME, @COLVARIABLE, @COLPARAMETER
WHILE @@FETCH_STATUS = 0
BEGIN
SET @DELETEPARACOLS = @DELETEPARACOLS + @COLPARAMETER + CHAR(13) + @SPACE + ',' ;
SET @WHERECOLS = @WHERECOLS + @COLNAME + ' = ' + @COLVARIABLE + ' AND ' ;
FETCH Next From SpPKText_Cursor Into @COLNAME, @COLVARIABLE, @COLPARAMETER
END
Close SpPKText_Cursor
Deallocate SpPKText_Cursor
IF (LEN(@TABLEINSERTPARAMETER)>0)
SET @TABLEINSERTPARAMETER = LEFT(@TABLEINSERTPARAMETER,LEN(@TABLEINSERTPARAMETER)-1) ;
-------------------------------------------------------------- Stored procedure scripts starts here ----------------------------------------------------------
IF (LEN(@TABLECOLUMNPARAMETER)>0)
BEGIN
Set @TABLECOLUMNPARAMETER = LEFT(@TABLECOLUMNPARAMETER,LEN(@TABLECOLUMNPARAMETER)-1) ;
Set @TABLECOLUMNVARIABLES = LEFT(@TABLECOLUMNVARIABLES,LEN(@TABLECOLUMNVARIABLES)-1) ;
Set @TABLECOLUMNS = LEFT(@TABLECOLUMNS,LEN(@TABLECOLUMNS)-1) ;
Set @TABLECOLS = LEFT(@TABLECOLS,LEN(@TABLECOLS)-1) ;
SET @UPDATECOLS = LEFT(@UPDATECOLS,LEN(@UPDATECOLS)-1) ;
IF (LEN(@WHERECOLS)>0)
BEGIN
SET @WHERECOLS = 'WHERE ' + LEFT(@WHERECOLS,LEN(@WHERECOLS)-4) ;
SET @DELETEPARACOLS = LEFT(@DELETEPARACOLS,LEN(@DELETEPARACOLS)-1) ;
END
----------------------------------------------------------Create INSERT stored procedure for the table if it does not exist -------------------------------------
IF NOT EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(@INSERT_SP_NAME) AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
BEGIN
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '/*-- ============================================='
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Author : dbo'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Create date : ' + Convert(varchar(20),Getdate())
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Description : Insert Procedure for ' + @TABLENAME
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Exec ' + @INSERT_SP_NAME + ' ' + @TABLECOLS
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- ============================================= */'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'CREATE PROCEDURE ' + @INSERT_SP_NAME
IF EXISTS(SELECT * FROM #TEMP_PK_TABLE)
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ' ' + @TABLECOLUMNPARAMETER
ELSE
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ' ' + @TABLEINSERTPARAMETER
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'AS'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'BEGIN'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + 'INSERT INTO [dbo].['+@TABLENAME +']'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + '( '
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + @SPACE + ' ' + @TABLECOLUMNS
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ')'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + 'VALUES'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + '('
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + @SPACE + ' ' + @TABLECOLUMNVARIABLES
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ')'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'END'
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
Set @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
EXEC(@STRSPTEXT);
IF (@@ERROR=0)
PRINT 'Procedure ' + @INSERT_SP_NAME + ' Created Successfully '
END
ELSE
BEGIN
PRINT 'Sorry!! ' + @INSERT_SP_NAME + ' Already exists in the database. '
END
------------------------------------------------------------- Create UPDATE stored procedure for the table if it does not exist ------------------------------------
IF Not EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(@UPDATE_SP_NAME) AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
Begin
SET @STRSPTEXT = ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '/*-- ============================================='
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Author : dbo'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Create date : ' + Convert(varchar(20),Getdate())
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Description : Update Procedure for ' + @TABLENAME
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Exec ' + @UPDATE_SP_NAME + ' ' + @TABLECOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- ============================================= */'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'CREATE PROCEDURE ' + @UPDATE_SP_NAME
IF exists(select * from #TEMP_PK_TABLE)
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ' ' + @TABLEINSERTPARAMETER
ELSE
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ' ' + @TABLECOLUMNPARAMETER
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'AS'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'BEGIN'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + 'UPDATE [dbo].['+@TABLENAME +']'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + 'SET '
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + @SPACE + ' ' + @UPDATECOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + @WHERECOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'END'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
--Print @strSPText ;
EXEC(@STRSPTEXT);
IF (@@ERROR=0)
PRINT 'Procedure ' + @UPDATE_SP_NAME + ' Created Successfully '
END
ELSE
BEGIN
PRINT 'Sorry!! ' + @UPDATE_SP_NAME + ' Already exists in the database. '
END
------------------------------------------------------ Create DELETE stored procedure for the table if it does not exist ----------------------------------
IF Not EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(@DELETE_SP_NAME) AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
BEGIN
SET @STRSPTEXT = ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '/*-- ============================================='
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Author : dbo'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Create date : ' + Convert(varchar(20),Getdate())
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Description : Delete Procedure for ' + @TABLENAME
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- Exec ' + @DELETE_SP_NAME + ' ' + @DELETEPARACOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + '-- ============================================= */'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'CREATE PROCEDURE ' + @DELETE_SP_NAME
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + ' ' + @DELETEPARACOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'AS'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'BEGIN'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + 'DELETE FROM [dbo].['+@TABLENAME +']'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + @SPACE + @WHERECOLS
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + 'END'
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
SET @STRSPTEXT = @STRSPTEXT + CHAR(13) + ''
EXEC(@STRSPTEXT);
IF (@@ERROR=0)
PRINT 'Procedure ' + @DELETE_SP_NAME + ' Created Successfully '
END
ELSE
BEGIN
PRINT 'Sorry!! ' + @DELETE_SP_NAME + ' Already exists in the database. '
END
END
Drop table #tmp_Structure
Drop table #tmp_Structure1
Drop table #TEMP_PK_TABLE
END
Subscribe to:
Comments (Atom)