This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
version: "1.0.0" | |
title: GeoJSON geometry | |
description: An example of swagger file for a geographic API. It contains the geometry definitions | |
termsOfService: "no" | |
contact: | |
name: Daniele Andreis | |
email: [email protected] | |
url: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------------------------------------------- | |
-- SQLServer : DROP all tables from SCHEMA_NAME | |
--------------------------------------------- | |
DECLARE @SCHEMA_NAME varchar(100) | |
SET @SCHEMA_NAME = 'my_schema' | |
DECLARE @cmd varchar(4000) | |
DECLARE MY_CURSOR CURSOR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------------------------------------------- | |
-- SQL Server : DROP all constraints from SCHEMA_NAME | |
--------------------------------------------- | |
DECLARE @SCHEMA_NAME varchar(100) | |
SET @SCHEMA_NAME = 'my_schema' | |
DECLARE @cmd varchar(4000) |