Skip to content
View aggarwalbindu16's full-sized avatar
Block or Report

Block or report aggarwalbindu16

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. DBscripts DBscripts Public

    TSQL 1

  2. sample-data-model.sql sample-data-model.sql
    1
    USE MyDB
    2
    Go
    3
    
                  
    4
    if exists (select 1
    5
       from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F')
  3. sample-data.sql sample-data.sql
    1
    USE MyDB
    2
    GO
    3
    
                  
    4
    SET IDENTITY_INSERT Customer ON
    5
    INSERT INTO [Customer] ([Id],[FirstName],[LastName],[City],[Country],[Phone])VALUES(1,'Maria','Anders','Berlin','Germany','030-0074321')