Skip to content

Commit f7edc43

Browse files
authored
Merge pull request #2 from microsoft/master
New synch
2 parents 3a6363c + f21d5b9 commit f7edc43

74 files changed

Lines changed: 2083 additions & 1056 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ build/
2121
bld/
2222
[Bb]in/
2323
[Oo]bj/
24+
out/
2425

2526
# Visual Studio 2015 cache/options directory
2627
.vs/
@@ -435,3 +436,8 @@ samples/databases/wide-world-importers/workload-drivers/order-insert/Multithread
435436
/samples/features/epm-framework/5.0/2Reporting/PolicyReports/bin/Debug
436437
/samples/features/epm-framework/5.0/2Reporting/PolicyReports/PolicyDashboard - Backup.rdl
437438
/samples/features/epm-framework/5.0/2Reporting/PolicyReports/PolicyDashboardFiltered.rdl.data
439+
samples/features/sql-management-objects/src/out/CodeCoverage/CodeCoverage.config
440+
441+
# Certificates
442+
*.pem
443+
*.p12
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Sample Database 1 (Employee DB Dummy Data)
2+
3+
This is a fundamental database that houses data based on a conventinal Sales environment. Sourced from progress.com with slight modifications.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
This is sourced from progress.com, variation by lightofodin.
3+
Basic database housing a sales scenario, that features employees and departments.
4+
*/
5+
CREATE TABLE emp (
6+
empno INT PRIMARY KEY,
7+
ename VARCHAR(10),
8+
job VARCHAR(9),
9+
mgr INT NULL,
10+
hiredate DATETIME,
11+
sal NUMERIC(7,2),
12+
comm NUMERIC(7,2) NULL,
13+
dept INT)
14+
begin
15+
insert into emp values
16+
(1,'JOHNSON','ADMIN',6,'12-17-1990',18000,NULL,4)
17+
insert into emp values
18+
(2,'HARDING','MANAGER',9,'02-02-1998',52000,300,3)
19+
insert into emp values
20+
(3,'TAFT','SALES I',2,'01-02-1996',25000,500,3)
21+
insert into emp values
22+
(4,'HOOVER','SALES I',2,'04-02-1990',27000,NULL,3)
23+
insert into emp values
24+
(5,'LINCOLN','TECH',6,'06-23-1994',22500,1400,4)
25+
insert into emp values
26+
(6,'GARFIELD','MANAGER',9,'05-01-1993',54000,NULL,4)
27+
insert into emp values
28+
(7,'POLK','TECH',6,'09-22-1997',25000,NULL,4)
29+
insert into emp values
30+
(8,'GRANT','ENGINEER',10,'03-30-1997',32000,NULL,2)
31+
insert into emp values
32+
(9,'JACKSON','CEO',NULL,'01-01-1990',75000,NULL,4)
33+
insert into emp values
34+
(10,'FILLMORE','MANAGER',9,'08-09-1994',56000,NULL,2)
35+
insert into emp values
36+
(11,'ADAMS','ENGINEER',10,'03-15-1996',34000,NULL,2)
37+
insert into emp values
38+
(12,'WASHINGTON','ADMIN',6,'04-16-1998',18000,NULL,4)
39+
insert into emp values
40+
(13,'MONROE','ENGINEER',10,'12-03-2000',30000,NULL,2)
41+
insert into emp values
42+
(14,'ROOSEVELT','CPA',9,'10-12-1995',35000,NULL,1)
43+
end
44+
CREATE TABLE dept (
45+
deptno INT NOT NULL,
46+
dname VARCHAR(14),
47+
loc VARCHAR(13))
48+
begin
49+
insert into dept values (1,'ACCOUNTING','ST LOUIS')
50+
insert into dept values (2,'RESEARCH','NEW YORK')
51+
insert into dept values (3,'SALES','ATLANTA')
52+
insert into dept values (4, 'OPERATIONS','SEATTLE')
53+
end

samples/features/Azure Data Studio/Notebooks/Install cluster dependencies.ipynb

Lines changed: 0 additions & 316 deletions
This file was deleted.

0 commit comments

Comments
 (0)