mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 17:23:38 -05:00
added perf tests using test driver (#136)
* added perf tests using test driver
This commit is contained in:
@@ -0,0 +1,682 @@
|
||||
USE [AdventureWorks2016CTP3]
|
||||
GO
|
||||
|
||||
SELECT [SystemInformationID]
|
||||
,[Database Version]
|
||||
,[VersionDate]
|
||||
,[ModifiedDate]
|
||||
FROM [dbo].[AWBuildVersion]
|
||||
GO
|
||||
|
||||
|
||||
GO
|
||||
|
||||
SELECT [DatabaseLogID]
|
||||
,[PostTime]
|
||||
,[DatabaseUser]
|
||||
,[Event]
|
||||
,[Schema]
|
||||
,[Object]
|
||||
,[TSQL]
|
||||
,[XmlEvent]
|
||||
FROM [dbo].[DatabaseLog]
|
||||
GO
|
||||
|
||||
|
||||
SELECT [OrderQty]
|
||||
,[ProductID]
|
||||
,[SpecialOfferID]
|
||||
,[OrderID]
|
||||
,[LocalID]
|
||||
FROM [Demo].[DemoSalesOrderDetailSeed]
|
||||
GO
|
||||
|
||||
SELECT [DueDate]
|
||||
,[CustomerID]
|
||||
,[SalesPersonID]
|
||||
,[BillToAddressID]
|
||||
,[ShipToAddressID]
|
||||
,[ShipMethodID]
|
||||
,[LocalID]
|
||||
FROM [Demo].[DemoSalesOrderHeaderSeed]
|
||||
GO
|
||||
|
||||
SELECT [DepartmentID]
|
||||
,[Name]
|
||||
,[GroupName]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[Department]
|
||||
GO
|
||||
|
||||
SELECT [BusinessEntityID]
|
||||
,[NationalIDNumber]
|
||||
,[LoginID]
|
||||
,[OrganizationNode]
|
||||
,[OrganizationLevel]
|
||||
,[JobTitle]
|
||||
,[BirthDate]
|
||||
,[MaritalStatus]
|
||||
,[Gender]
|
||||
,[HireDate]
|
||||
,[SalariedFlag]
|
||||
,[VacationHours]
|
||||
,[SickLeaveHours]
|
||||
,[CurrentFlag]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[Employee]
|
||||
GO
|
||||
|
||||
SELECT [TrackingEventID]
|
||||
,[EventName]
|
||||
FROM [Sales].[TrackingEvent]
|
||||
GO
|
||||
|
||||
SELECT [SalesTaxRateID]
|
||||
,[StateProvinceID]
|
||||
,[TaxType]
|
||||
,[TaxRate]
|
||||
,[Name]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[SalesTaxRate]
|
||||
GO
|
||||
|
||||
SELECT [SalesOrderID]
|
||||
,[SalesOrderDetailID]
|
||||
,[CarrierTrackingNumber]
|
||||
,[OrderQty]
|
||||
,[ProductID]
|
||||
,[SpecialOfferID]
|
||||
,[UnitPrice]
|
||||
,[UnitPriceDiscount]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[SalesOrderDetail_inmem]
|
||||
GO
|
||||
|
||||
SELECT [SalesOrderID]
|
||||
,[RevisionNumber]
|
||||
,[OrderDate]
|
||||
,[DueDate]
|
||||
,[ShipDate]
|
||||
,[Status]
|
||||
,[OnlineOrderFlag]
|
||||
,[SalesOrderNumber]
|
||||
,[PurchaseOrderNumber]
|
||||
,[AccountNumber]
|
||||
,[CustomerID]
|
||||
,[SalesPersonID]
|
||||
,[TerritoryID]
|
||||
,[BillToAddressID]
|
||||
,[ShipToAddressID]
|
||||
,[ShipMethodID]
|
||||
,[CreditCardID]
|
||||
,[CreditCardApprovalCode]
|
||||
,[CurrencyRateID]
|
||||
,[SubTotal]
|
||||
,[TaxAmt]
|
||||
,[Freight]
|
||||
,[TotalDue]
|
||||
,[Comment]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[SalesOrderHeader]
|
||||
GO
|
||||
|
||||
|
||||
|
||||
SELECT [SalesOrderID]
|
||||
,[RevisionNumber]
|
||||
,[OrderDate]
|
||||
,[DueDate]
|
||||
,[ShipDate]
|
||||
,[Status]
|
||||
,[OnlineOrderFlag]
|
||||
,[SalesOrderNumber]
|
||||
,[PurchaseOrderNumber]
|
||||
,[AccountNumber]
|
||||
,[CustomerID]
|
||||
,[SalesPersonID]
|
||||
,[TerritoryID]
|
||||
,[BillToAddressID]
|
||||
,[ShipToAddressID]
|
||||
,[ShipMethodID]
|
||||
,[CreditCardID]
|
||||
,[CreditCardApprovalCode]
|
||||
,[CurrencyRateID]
|
||||
,[SubTotal]
|
||||
,[TaxAmt]
|
||||
,[Freight]
|
||||
,[TotalDue]
|
||||
,[Comment]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[SalesOrder_json]
|
||||
GO
|
||||
|
||||
SELECT [BusinessEntityID]
|
||||
,[CreditCardID]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[PersonCreditCard]
|
||||
GO
|
||||
|
||||
SELECT [OrderTrackingID]
|
||||
,[SalesOrderID]
|
||||
,[CarrierTrackingNumber]
|
||||
,[TrackingEventID]
|
||||
,[EventDetails]
|
||||
,[EventDateTime]
|
||||
FROM [Sales].[OrderTracking]
|
||||
GO
|
||||
|
||||
SELECT [CustomerID]
|
||||
,[FirstName]
|
||||
,[LastName]
|
||||
,[SSN]
|
||||
,[CreditCardNumber]
|
||||
,[EmailAddress]
|
||||
,[PhoneNumber]
|
||||
,[TerritoryID]
|
||||
FROM [Sales].[CustomerPII]
|
||||
GO
|
||||
|
||||
SELECT [CustomerID]
|
||||
,[PersonID]
|
||||
,[StoreID]
|
||||
,[TerritoryID]
|
||||
,[AccountNumber]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[Customer]
|
||||
GO
|
||||
|
||||
SELECT [CurrencyRateID]
|
||||
,[CurrencyRateDate]
|
||||
,[FromCurrencyCode]
|
||||
,[ToCurrencyCode]
|
||||
,[AverageRate]
|
||||
,[EndOfDayRate]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[CurrencyRate]
|
||||
GO
|
||||
|
||||
|
||||
SELECT [CurrencyCode]
|
||||
,[Name]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[Currency]
|
||||
GO
|
||||
|
||||
SELECT [CreditCardID]
|
||||
,[CardType]
|
||||
,[CardNumber]
|
||||
,[ExpMonth]
|
||||
,[ExpYear]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[CreditCard]
|
||||
GO
|
||||
|
||||
SELECT [CountryRegionCode]
|
||||
,[CurrencyCode]
|
||||
,[ModifiedDate]
|
||||
FROM [Sales].[CountryRegionCurrency]
|
||||
GO
|
||||
|
||||
SELECT [BusinessEntityID]
|
||||
,[AccountNumber]
|
||||
,[Name]
|
||||
,[CreditRating]
|
||||
,[PreferredVendorStatus]
|
||||
,[ActiveFlag]
|
||||
,[PurchasingWebServiceURL]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[Vendor]
|
||||
GO
|
||||
|
||||
SELECT [ShipMethodID]
|
||||
,[Name]
|
||||
,[ShipBase]
|
||||
,[ShipRate]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[ShipMethod]
|
||||
GO
|
||||
|
||||
SELECT [PurchaseOrderID]
|
||||
,[RevisionNumber]
|
||||
,[Status]
|
||||
,[EmployeeID]
|
||||
,[VendorID]
|
||||
,[ShipMethodID]
|
||||
,[OrderDate]
|
||||
,[ShipDate]
|
||||
,[SubTotal]
|
||||
,[TaxAmt]
|
||||
,[Freight]
|
||||
,[TotalDue]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[PurchaseOrderHeader]
|
||||
GO
|
||||
|
||||
SELECT [PurchaseOrderID]
|
||||
,[PurchaseOrderDetailID]
|
||||
,[DueDate]
|
||||
,[OrderQty]
|
||||
,[ProductID]
|
||||
,[UnitPrice]
|
||||
,[LineTotal]
|
||||
,[ReceivedQty]
|
||||
,[RejectedQty]
|
||||
,[StockedQty]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[PurchaseOrderDetail]
|
||||
GO
|
||||
|
||||
SELECT [LocationID]
|
||||
,[Name]
|
||||
,[CostRate]
|
||||
,[Availability]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[Location]
|
||||
GO
|
||||
|
||||
|
||||
SELECT [ProductID]
|
||||
,[Name]
|
||||
,[ProductNumber]
|
||||
,[MakeFlag]
|
||||
,[FinishedGoodsFlag]
|
||||
,[Color]
|
||||
,[SafetyStockLevel]
|
||||
,[ReorderPoint]
|
||||
,[StandardCost]
|
||||
,[ListPrice]
|
||||
,[Size]
|
||||
,[SizeUnitMeasureCode]
|
||||
,[WeightUnitMeasureCode]
|
||||
,[Weight]
|
||||
,[DaysToManufacture]
|
||||
,[ProductLine]
|
||||
,[Class]
|
||||
,[Style]
|
||||
,[ProductSubcategoryID]
|
||||
,[ProductModelID]
|
||||
,[SellStartDate]
|
||||
,[SellEndDate]
|
||||
,[DiscontinuedDate]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[Product]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[Name]
|
||||
,[ProductNumber]
|
||||
,[MakeFlag]
|
||||
,[FinishedGoodsFlag]
|
||||
,[Color]
|
||||
,[SafetyStockLevel]
|
||||
,[ReorderPoint]
|
||||
,[StandardCost]
|
||||
,[ListPrice]
|
||||
,[Size]
|
||||
,[SizeUnitMeasureCode]
|
||||
,[WeightUnitMeasureCode]
|
||||
,[Weight]
|
||||
,[DaysToManufacture]
|
||||
,[ProductLine]
|
||||
,[Class]
|
||||
,[Style]
|
||||
,[ProductSubcategoryID]
|
||||
,[ProductModelID]
|
||||
,[SellStartDate]
|
||||
,[SellEndDate]
|
||||
,[DiscontinuedDate]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[Product_inmem]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[Name]
|
||||
,[ProductNumber]
|
||||
,[MakeFlag]
|
||||
,[FinishedGoodsFlag]
|
||||
,[Color]
|
||||
,[SafetyStockLevel]
|
||||
,[ReorderPoint]
|
||||
,[StandardCost]
|
||||
,[ListPrice]
|
||||
,[Size]
|
||||
,[SizeUnitMeasureCode]
|
||||
,[WeightUnitMeasureCode]
|
||||
,[Weight]
|
||||
,[DaysToManufacture]
|
||||
,[ProductLine]
|
||||
,[Class]
|
||||
,[Style]
|
||||
,[ProductSubcategoryID]
|
||||
,[ProductModelID]
|
||||
,[SellStartDate]
|
||||
,[SellEndDate]
|
||||
,[DiscontinuedDate]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[Product_ondisk]
|
||||
GO
|
||||
|
||||
SELECT [ProductCategoryID]
|
||||
,[Name]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductCategory]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[StartDate]
|
||||
,[EndDate]
|
||||
,[StandardCost]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductCostHistory]
|
||||
GO
|
||||
|
||||
SELECT [ProductDescriptionID]
|
||||
,[Description]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductDescription]
|
||||
GO
|
||||
|
||||
|
||||
SELECT [ProductID]
|
||||
,[DocumentNode]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductDocument]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[LocationID]
|
||||
,[Shelf]
|
||||
,[Bin]
|
||||
,[Quantity]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductInventory]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[StartDate]
|
||||
,[EndDate]
|
||||
,[ListPrice]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductListPriceHistory]
|
||||
GO
|
||||
|
||||
SELECT [ProductModelID]
|
||||
,[Name]
|
||||
,[CatalogDescription]
|
||||
,[Instructions]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductModel]
|
||||
GO
|
||||
|
||||
SELECT [ProductModelID]
|
||||
,[IllustrationID]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductModelIllustration]
|
||||
GO
|
||||
|
||||
SELECT [ProductModelID]
|
||||
,[IllustrationID]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductModelIllustration]
|
||||
GO
|
||||
SELECT [ProductModelID]
|
||||
,[ProductDescriptionID]
|
||||
,[CultureID]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductModelProductDescriptionCulture]
|
||||
GO
|
||||
SELECT [ProductPhotoID]
|
||||
,[ThumbNailPhoto]
|
||||
,[ThumbnailPhotoFileName]
|
||||
,[LargePhoto]
|
||||
,[LargePhotoFileName]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductPhoto]
|
||||
GO
|
||||
SELECT [ProductID]
|
||||
,[ProductPhotoID]
|
||||
,[Primary]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductProductPhoto]
|
||||
GO
|
||||
SELECT [ProductReviewID]
|
||||
,[ProductID]
|
||||
,[ReviewerName]
|
||||
,[ReviewDate]
|
||||
,[EmailAddress]
|
||||
,[Rating]
|
||||
,[Comments]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[ProductReview]
|
||||
GO
|
||||
|
||||
SELECT [TransactionID]
|
||||
,[ProductID]
|
||||
,[ReferenceOrderID]
|
||||
,[ReferenceOrderLineID]
|
||||
,[TransactionDate]
|
||||
,[TransactionType]
|
||||
,[Quantity]
|
||||
,[ActualCost]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[TransactionHistory]
|
||||
GO
|
||||
|
||||
SELECT [TransactionID]
|
||||
,[ProductID]
|
||||
,[ReferenceOrderID]
|
||||
,[ReferenceOrderLineID]
|
||||
,[TransactionDate]
|
||||
,[TransactionType]
|
||||
,[Quantity]
|
||||
,[ActualCost]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[TransactionHistoryArchive]
|
||||
GO
|
||||
SELECT [UnitMeasureCode]
|
||||
,[Name]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[UnitMeasure]
|
||||
GO
|
||||
|
||||
SELECT [WorkOrderID]
|
||||
,[ProductID]
|
||||
,[OrderQty]
|
||||
,[StockedQty]
|
||||
,[ScrappedQty]
|
||||
,[StartDate]
|
||||
,[EndDate]
|
||||
,[DueDate]
|
||||
,[ScrapReasonID]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[WorkOrder]
|
||||
GO
|
||||
SELECT [WorkOrderID]
|
||||
,[ProductID]
|
||||
,[OperationSequence]
|
||||
,[LocationID]
|
||||
,[ScheduledStartDate]
|
||||
,[ScheduledEndDate]
|
||||
,[ActualStartDate]
|
||||
,[ActualEndDate]
|
||||
,[ActualResourceHrs]
|
||||
,[PlannedCost]
|
||||
,[ActualCost]
|
||||
,[ModifiedDate]
|
||||
FROM [Production].[WorkOrderRouting]
|
||||
GO
|
||||
|
||||
SELECT [ProductID]
|
||||
,[BusinessEntityID]
|
||||
,[AverageLeadTime]
|
||||
,[StandardPrice]
|
||||
,[LastReceiptCost]
|
||||
,[LastReceiptDate]
|
||||
,[MinOrderQty]
|
||||
,[MaxOrderQty]
|
||||
,[OnOrderQty]
|
||||
,[UnitMeasureCode]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[ProductVendor]
|
||||
GO
|
||||
|
||||
SELECT [PurchaseOrderID]
|
||||
,[PurchaseOrderDetailID]
|
||||
,[DueDate]
|
||||
,[OrderQty]
|
||||
,[ProductID]
|
||||
,[UnitPrice]
|
||||
,[LineTotal]
|
||||
,[ReceivedQty]
|
||||
,[RejectedQty]
|
||||
,[StockedQty]
|
||||
,[ModifiedDate]
|
||||
FROM [Purchasing].[PurchaseOrderDetail]
|
||||
GO
|
||||
SELECT [AddressID]
|
||||
,[AddressLine1]
|
||||
,[AddressLine2]
|
||||
,[City]
|
||||
,[StateProvinceID]
|
||||
,[PostalCode]
|
||||
,[SpatialLocation]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[Address]
|
||||
GO
|
||||
SELECT [AddressTypeID]
|
||||
,[Name]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[AddressType]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[BusinessEntity]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[AddressID]
|
||||
,[AddressTypeID]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[BusinessEntityAddress]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[PersonID]
|
||||
,[ContactTypeID]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[BusinessEntityContact]
|
||||
GO
|
||||
SELECT [ContactTypeID]
|
||||
,[Name]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[ContactType]
|
||||
GO
|
||||
SELECT [CountryRegionCode]
|
||||
,[Name]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[CountryRegion]
|
||||
GO
|
||||
|
||||
SELECT [BusinessEntityID]
|
||||
,[EmailAddressID]
|
||||
,[EmailAddress]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[EmailAddress]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[PasswordHash]
|
||||
,[PasswordSalt]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[Password]
|
||||
GO
|
||||
|
||||
SELECT [BusinessEntityID]
|
||||
,[PersonType]
|
||||
,[NameStyle]
|
||||
,[Title]
|
||||
,[FirstName]
|
||||
,[MiddleName]
|
||||
,[LastName]
|
||||
,[Suffix]
|
||||
,[EmailPromotion]
|
||||
,[AdditionalContactInfo]
|
||||
,[Demographics]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[Person]
|
||||
GO
|
||||
SELECT [PersonID]
|
||||
,[PersonType]
|
||||
,[NameStyle]
|
||||
,[Title]
|
||||
,[FirstName]
|
||||
,[MiddleName]
|
||||
,[LastName]
|
||||
,[Suffix]
|
||||
,[EmailPromotion]
|
||||
,[AdditionalContactInfo]
|
||||
,[Demographics]
|
||||
,[rowguid]
|
||||
,[ModifiedDate]
|
||||
FROM [Person].[Person_json]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[NationalIDNumber]
|
||||
,[LoginID]
|
||||
,[OrganizationNode]
|
||||
,[OrganizationLevel]
|
||||
,[JobTitle]
|
||||
,[BirthDate]
|
||||
,[MaritalStatus]
|
||||
,[Gender]
|
||||
,[HireDate]
|
||||
,[VacationHours]
|
||||
,[SickLeaveHours]
|
||||
,[ValidFrom]
|
||||
,[ValidTo]
|
||||
FROM [HumanResources].[Employee_Temporal]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[DepartmentID]
|
||||
,[ShiftID]
|
||||
,[StartDate]
|
||||
,[EndDate]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[EmployeeDepartmentHistory]
|
||||
GO
|
||||
SELECT [BusinessEntityID]
|
||||
,[RateChangeDate]
|
||||
,[Rate]
|
||||
,[PayFrequency]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[EmployeePayHistory]
|
||||
GO
|
||||
SELECT [JobCandidateID]
|
||||
,[BusinessEntityID]
|
||||
,[Resume]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[JobCandidate]
|
||||
GO
|
||||
SELECT [ShiftID]
|
||||
,[Name]
|
||||
,[StartTime]
|
||||
,[EndTime]
|
||||
,[ModifiedDate]
|
||||
FROM [HumanResources].[Shift]
|
||||
GO
|
||||
Reference in New Issue
Block a user