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 ?
-
This question would be on-topic at http://opendata.stackexchange.com/ – Nicolas Raoul Jul 24 '15 at 11:38
6 Answers
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.

- 422,506
- 82
- 585
- 676
The Northwind database contains some sample employee data in a .mdf file which can be attached to SQL Server.

- 5,859
- 2
- 37
- 57

- 307
- 3
- 6
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.

- 77,191
- 7
- 105
- 161
This might not be Employee based, but is definitely worth having a look

- 9,393
- 11
- 59
- 73

- 162,879
- 31
- 289
- 284
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.

- 2,565
- 4
- 25
- 39