Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

13
votes
9answers
2k views

Data generators for SQL server?

I would like to receive suggestions on the data generators that are available, for SQL server. If posting a response, please provide any features that you think are important. I have never used a ...
7
votes
1answer
263 views

What alternatives exist for Data Generation Plans for Visual Studio Express users?

I'm wondering if there is a good option for those of us using Express (or even Professional) editions without having to go outside the Visual Studio project (i.e. writing a ruby/perl/etc script to ...
5
votes
1answer
193 views

Vs2010 Data Generation Plan fails with “Data generation failed because of the following exception: Column ”xyz“ does not allow DBNull.Value”

I'm fairly new to Vs Data capabilities, and this is my first data generation plan. I have implemented a database using a Vs2010 database project, and used it to deploy to a sql server express 2008 ...
5
votes
3answers
138 views

Is there a lib to generate data according to a regexp? (Python or other)

Given a regexp, I would like to generate random data x number of time to test something. e.g. >>> print generate_date('\d{2,3}') 13 >>> print generate_date('\d{2,3}') 422 Of ...
5
votes
2answers
813 views

Creating a Data Generation Plan that Includes Correct Lookup Table Values

I'm just getting started with Visual Studio Database projects and loving the data generation plans I can create with it. However, in one of my projects I need to populate a lookup table with specific ...
4
votes
1answer
79 views

Generate data for MySQL tables

Is there a program like Red Gate's Data Generator for MS SQL Server that generates data based on your database schema for MySQL? Other alternatives (easy) to accomplish the objective very much ...
4
votes
2answers
66 views

Satellite Map Analysis for Building Generation

Has anyone every heard of a program which analyses a satellite map and attempts to generate three dimensional buildings that roughly match the length/width of their real life counterparts? The use in ...
3
votes
2answers
93 views

A quick SQL query to generate example data

I need to populate a currently empty table with a hundred or so fake records to simulate logins over the past two years to test my code with. The login table schema looks like: CREATE TABLE `Logins` ...
2
votes
2answers
61 views

Testing data generator for Intersystems Caché?

Are there any easy ways (i.e. libraries) to create testing data for Caché, similar to the Populator and Faker gems for Ruby/Rails? ** edit ** I am trying to create test data for an Epic ...
2
votes
1answer
229 views

Visual Studio Data Generation and Many-to-Many

The data generation tool that comes with Visual Studio allows you to populate tables with random/patterned data. As an example, you can tell it to populate an Employees table with 50,000 rows and you ...
2
votes
0answers
83 views

Data Generation Plan that concatenates two columns to form Email

Using the Visual Studio Data Generation Plan, I have two columns, FirstName and Lastname, populated from a Data Bound Generator (referencing a database seeded with actual valid First and Last Names). ...
2
votes
4answers
112 views

Generate a string representation of a one-hot encoding

In Python, I need to generate a dict that maps a letter to a pre-defined "one-hot" representation of that letter. By way of illustration, the dict should look like this: { 'A': '1 0 0 0 0 0 0 0 0 0 0 ...
1
vote
1answer
37 views

XSL Solution for Obfuscating Enterprise Data?

I have a client with several applications handling sensitive data stored in eXist—a native XML database. I would like to test with the production data in my development environment, but there are ...
1
vote
2answers
121 views

Test data generator for JPA or Hibernate

Are there any tools or libraries that can be used to generate test data using JPA or entity beans? I believe this will be very helpful for unit testing where we can have an in memory database with ...
1
vote
1answer
142 views

Data Generation Plan error

When I attempt to run the data generation plan I get the following error, but there are no columns to be deleted. The column XXXXX has been deleted and was previously selected for data generation. ...
0
votes
1answer
7 views

Data generation plan failed because of duplicate PRIMARY KEY constraints

In VS2010 database project, I try to generate test data for a table that has existing data (by clicking 'No' when prompted). Identity column (that is the primary key) is SQL computed value so I can ...
0
votes
0answers
22 views

Data generation mode video seeking

I am building a Video Player and try to use data generation mode. But when I had tried to seek I could not find a way to properly proceed. I have searched a lot but could not find an example of ...
0
votes
0answers
39 views

Generate Multiple Choice Questions

I'm working on a quiz application that will have a number of multiple choice questions. I'm waiting on the content from the client, but I'm hoping to start testing with some placeholder data for the ...
0
votes
1answer
40 views

What's a Data Generation Plan ( MS Visual Studio )?

In Microsoft Visual Studio Team Edition for Database Professionals , what does the Data Generation Plan wizard actually do ? Is it a tool that dumps random data into my tables so I can test my ...
0
votes
0answers
40 views

How to generate evenly distributed data using Visual Studio Ultimate's Data Generator

I have a table in my sqlserver called Employee containing columns Name, Dept, ID. I want all the data to be generated in random except the 'Dept' column, the Dept column should contain any of the four ...
0
votes
1answer
78 views

How do I exclude auto generated columns from SQL Server Generate Script Data Only?

SQL Server Generate Script does a great job of creating a script for the data in the tables using the Data Only option for 'Types of data to script' in the advanced option. However the script ...
0
votes
1answer
78 views

Build numbers table on the fly in Oracle

How do I return a rowset consisting of the last four years based on the current date? If this query runs on 12/31/2010 it should return: 2007 2008 2009 2010 But if it is run on 1/1/2010 it should ...
0
votes
2answers
51 views

Tools for generating database records

I will be happy to know if there is any available tool which can generate data records based to a specific schema rules. At this moment I work with CakePHP and I'm new to mysql workbench, but i have ...
0
votes
1answer
112 views

Table per Type Inhertiance and Data Generation Plans

I have an Entity Framework model using Table per Type Inheritance, but when I use a VS Data Generation Plan it produces duplicate keys in the child tables, which is a problem for EF. Does anyone know ...
0
votes
2answers
273 views

How do I generate quasi-random statistical data sets?

I'm looking for a tool that will let me generate a data set with certain statistical properties. For example, suppose I want to generate 1 million integers with x number of outliers for use in ...
0
votes
1answer
59 views

Data Generation Plan connected fields

Is it possible to have 2 fields with the same data for a Data Generation Plan? For example, the table aspnet_roles has 2 fields RoleName and LoweredRoleName and I want them to show the same data.