Tom
Tom

Reputation: 91

Sample Employee SQL Server database with data

Hi I need some sample SQL Server Employee database with data such as id, surname, name, age, adress etc. It must be quite big, I search with google, but I don't find any good sample. Can any body help ?

Upvotes: 4

Views: 14990

Answers (6)

meekash55
meekash55

Reputation: 327

The Northwind database contains some sample employee data in a .mdf file which can be attached to SQL Server.

Upvotes: 1

Adriaan Stander
Adriaan Stander

Reputation: 166356

This might not be Employee based, but is definitely worth having a look

AdventureWorks

Upvotes: 1

Kev Hunter
Kev Hunter

Reputation: 2625

if you have access to Microsoft Visual studio for Database professionals it has a data generator built in which you can use link text

Also the AdventureWorks db also has a Employee table i think.

Upvotes: 1

gbn
gbn

Reputation: 432210

The only tool I can think of is Red Gate Data Generator.

Otherwise, you'd be looking at someone's actual data or expecting someone to provide such a tool free of charge.

Upvotes: 4

High Performance Mark
High Performance Mark

Reputation: 78316

You may find it a challenge to find such a database, privacy concerns prevent most publication of personal data such as you require. You may find one using pseudo-data, that is data that looks like what you want but is not about 'real' people. But you will probably find it easier to generate your own such pseudo-data. If you take this approach you can be sure that the data you generate meets your requirements too.

Upvotes: 1

hallie
hallie

Reputation: 2845

The old Northwind database has Employee table but that's quite small.

Upvotes: 0

Related Questions