Skip to content

Microsoft SQL Server project which utilizes a stored procedure to extract, insert, update, and or delete records

Notifications You must be signed in to change notification settings

Cuates/extractinsertupdatedeletemssql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

extractinsertupdatedeletemssql

Microsoft SQL Server project which utilizes a stored procedure to extract, insert, update, and or delete records

Table of Contents

Version

  • 0.0.1

Important Note

  • This project was written with SQL Server 2012 methods

Dependent MSSQL Function

Prerequisite Data Types

  • nvarchar
  • bigint
  • int
  • smallint
  • datetime2

Prerequisite Functions

  • nullif
  • ltrim
  • rtrim
  • try_cast
  • upper
  • getdate
  • error_number
  • error_line
  • error_message

Prerequisite Conditions

  • exists

Usage

  • dbo.extractInsertUpdateDelete @optionMode = 'extractEntriesColumnOne', @columnOneString = 'String-One-Example'
  • dbo.extractInsertUpdateDelete @optionMode = 'extractTableEntriesReport'
  • dbo.extractInsertUpdateDelete @optionMode = 'insertColumnOneColumnTwoEntry', @userIdentifierString = 'UserIdentifierStringExample', @columnOneString = 'String-One-Example', @columnTwoString = 'String-Two-Example'
  • dbo.extractInsertUpdateDelete @optionMode = 'updateColumnTwo', @userIdentifierString = 'UserIdentifierStringExample', @columnOneString = 'String-One-Example', @columnTwoString = 'String-Two-Example', @columnTwoStringNew = 'String-Two-Example-New'
  • dbo.extractInsertUpdateDelete @optionMode = 'deleteColumnOneEntry', @columnOneString = 'String-One-Example'

About

Microsoft SQL Server project which utilizes a stored procedure to extract, insert, update, and or delete records

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages