Tagged Questions
1
vote
1answer
45 views
SQL Server - Generate script without primary key
I was looking for an answer but I can't found it.
I'm trying to make a generated script of my data (I mean, all the INSERT INTO commands).
Because access permissions, I can't do a SET IDENTITY_INSERT ...
0
votes
1answer
25 views
Migrating multiple SQL Server 2005 databases to SQL Server 2008
I have a development server running SQL Server 2005 with 75+ databases on it. I will be installing a new SQL Server 2008 and want to migrate all the databases over to this server.
Does anyone have ...
0
votes
1answer
18 views
Migrating an SQL database from a server to another [closed]
I am new to this world: I am given a list of files and I am requested to deploy them on a server (and then someone else will delete them from the old server).
according to my research (and correct me ...
0
votes
1answer
19 views
Approach in migrating Access rows to existing SQL tables
I have used SSMA 5.2 to migrate an Access 2010 database to SQL 2005 (SP3). The SQL database is part of an ASP.NET application and is currently in production. However, users have also been inserting ...
0
votes
0answers
38 views
Execute additional SQL after Doctrine Migration
How can I execute additional SQL queries to update my database schema automatically to ENUMs?
I want to use ENUM for a MySQL column and implemented the first solution of the doctrine-documentation ...
0
votes
0answers
32 views
Oracle SQL; split field and insert tokens in other table [duplicate]
I need to make a migration in an existing DB to replace a CSV field with a table. Because there is already existing data in my DB, I need to migrate it to the new table.
How can I split this CSV field ...
1
vote
1answer
83 views
SQL query to retrieve the values I want, stored into a single row
I'm 'trying' to migrate from Goldmine 5.5 to MCRM 2011 using Starfish ETL.
The problem is that their is a table Mailbox into Goldmine database...
...
0
votes
1answer
60 views
SQL Azure Migration Wizard - how to re-migrate
Once you have successfully migrated a local SQL Server database up to SQL Azure, how can you use the SQL Azure Migration Wizard to re-migrate (or sync if you will) the database?
I get a number of ...
1
vote
1answer
42 views
rails no such column error
I have the following app. A Movie has many reviews, a moviegoer has many reviews.
When I try to associate a review with a movie I get the following error
Review Load (0.1ms) SELECT "reviews".* FROM ...
0
votes
2answers
142 views
Entity framework and migrations - how to update my database on remote server?
I enabled migrations for my entity framework application. Now, i want to update my database on my remote server. I ran this command:
PM> Update-Database -Script
So it generated a sql script. ...
1
vote
2answers
72 views
How to write SQL in a migration in Rails
I have the following SQL which I need to do
create table cars_users2 as select distinct * from cars_users;
drop table cars_users;
alter table cars_users2 rename to cars_users;
since I cannot use ...
2
votes
0answers
127 views
Validating Long RAW column in oracle with SQL Server after migration using SSMA
I have an oracle 11g source which I hae migrated to SQL Server 2008 using SQL Server Migration assistant tool from microsoft. The oracle source had a table that contained a long raw column. The type ...
0
votes
2answers
62 views
Easiest way to move data to other database
I have two versions of my blog: the 1st is written in PHP and uses MySQL, but the 2nd, the new one, is written in Python and uses Postgres.
My goal is to move data from one to other. Table names and ...
0
votes
1answer
81 views
SQL - user-management --> export/import users via script
The company I'm working at is migrating their databases from Oracle 10g to 11g. On Monday we want to clean our development database and clone the production database to that storage.
Here we go ...
0
votes
0answers
82 views
SQL - full-text search database links in procedures, triggers, etc
The company I'm working at is migrating their databases from Oracle 10g to 11g. On Monday we want to clean our development database and clone the production database to that storage.
My first task is ...
1
vote
1answer
61 views
Tool to migrate from Embedded SQL to ODBC [closed]
I have a bunch of C code accessing database (Oracle, DB2 and Sybase) through Embedded SQL : the base code is the same, but with three different precompilers, three sort of executables are built, one ...
0
votes
1answer
75 views
Porting PostgreSQL trigger to SQL Server 2008
I have to port a PostgreSQL trigger but since I don't have much experience on that I don't know how to change some parts. The original trigger is:
CREATE TRIGGER aerolinea_tr
AFTER UPDATE
ON ...
0
votes
0answers
61 views
Migration from Visual Dbase 5
A project requires the migration of an internal company administration software (written in Visual Dbase 5) to current standards, including complete new architecture and processing structures, based ...
1
vote
0answers
156 views
AS/400 to SQL Server translator [closed]
I am migrating a AS/400 legacy system into SQL Server. The goal is to migrate the programs too. Is there any tool that translates AS/400 program to equivalent SQL for Microsoft SQL Server on the fly?
0
votes
0answers
26 views
Is it possible for database migration tools, such as alembic to handle case sensitivity or insensitivity across database engines [closed]
Or it is better to be handled in application development code?
Thanks and best regards,
0
votes
1answer
148 views
How to compare data between two different database of two different providers?
We are planning to do a database Migration from MySql Server to MSSQL server; we have got some external tools and some internal tools to accomplish this. Now we need to have a process to validate the ...
0
votes
1answer
147 views
Migrating from Apache Derby to MySQL
I have a JDBC application that uses Apache Derby. How can I migrate my entire database system to use MySQL?
I have 3 Java programs that access the database
I have 3 tables and 2 views
I am using ...
0
votes
3answers
61 views
Rails Deleting SQL result from inner join
i have two tables Accounts and Details.
an account has many details.
one of the details is company size. they are ranked from 1-7. i would like to remove all accounts where the size is 6 then i ...
0
votes
2answers
126 views
SchemaBuilder and start value of Id
I'm writing a module for Orchard CMS, and I need to set start value of Id as 15.
How can I do it via code?
In Migrations.cs:
SchemaBuilder.CreateTable("NewRecord", table => table
...
0
votes
2answers
139 views
Add data from one table to another in ruby on rails
In my current project, I have to get some data in a column of one table and put them to the 2nd table. The first table data have been saved as hash as follows:
---
- werweqr
- test
- B1
- B2
- B3
- ...
0
votes
0answers
66 views
Symfony2 Implement client ability to create db in production
I need to create a UI for my Symfony2 Intranet product to allow staff to create a new database from within the app.
(The functionality to allow staff to select an existing db at login has been ...
1
vote
1answer
721 views
Problems with default values for updated_at and created_at with SQL migrations in Rails?
I'm writing migrations in Rails 3.2 using SQL (i.e. execute) to enforce application logic (foreign keys, defaults, checks, triggers) at the database level. The reason is that I want consistent ...
1
vote
1answer
127 views
.NET Authentication issue
I have recently been working on a ASP.NET project for a client. The project was to migrate the database from the old Oracle database to a new SQL Server 2008 database. The migration went well and most ...
0
votes
2answers
908 views
Migration Issue: error '80040e14' in ASP classic application from Windows server 2003/SQL Server 2000 to Windows Server 2008 R2/SQL Server 2012
First of all I want you to know that I'm not an engineer, I'm just a web designer working within the constraints of my job. We have a bunch of applications made in ASP classic running in a Windows ...
1
vote
1answer
203 views
Heroku - clean up the database, run the migrations with new items
I have an app on Heroku and need to clean up the database there, again run all (edited) migrations (in the migrations are added the default rows into the table) with the new default rows.
I ran
...
0
votes
2answers
380 views
MySQL to SQL Server - Incorrect syntax near the keyword 'mictest'
First, I tried to migrate my databases with SQL Server Migration Assistant for MySql and it worked fine.
But now, I have some problems with my code.
I had this line on MYSQL version :
$fct="SELECT ...
0
votes
0answers
136 views
Migrate sql extension file into SQL Server 2008 sdf file
I have a database file named db.sql I would like to migrate/change it into a .sdf file to use in my mvc application.
Are there free tools or methods, commands to do this?
1
vote
1answer
76 views
Error after migrating database from SQL Server CE to SQL Server
I have used the migration feature in WebMatrix to migrate my .sdf database to SQL Server. I am now getting the error below:
var usernameExists = db.Query("SELECT Username FROM Users WHERE Username = ...
0
votes
1answer
104 views
How to migrate data in Rails 3?
In my dev database (SQLite) i have some tables (like vocabularies) which i need on production (PostgreSQL, MySQL). Is there some method to migrate table with data?
0
votes
1answer
198 views
ForeignKey Relationships and Migrating Database in Django
I'm working on a django project with these two (exemplary) models:
Tenant: id, Building(ForeignKey), User(ForeignKey), NameOfTenant(CharacterField)
Building: id, Address(CharacterField), ...
0
votes
3answers
283 views
merging two similar database into one DB
i have a requirement to combine two similar database into one
for eg
i have two different database of app version 1.0 looks like this
company 1 table
id Name Address state
1 aaa street2 ...
1
vote
1answer
78 views
Easier database table creation with PHP
Is there any other more simple way of creating a database table?
I recently started creating wordpress plugins and I was fascinated by the easiness of creating a table or adding values to present ...
0
votes
1answer
175 views
Data Migration from different Databases different tables
I have a Db called Db1.And also i have a different Db called Db2.Db2 has no data.I want to migrate datas from Db1 to Db2.But this two databases are not the same with each other.they include different ...
2
votes
1answer
1k views
Rails Migration Update existing records while creating entries in another table
I am trying to set up Beta Invites for my Rails application. I have an Invitation model and a User model.
User has one invitation_id. I am validating that user must have an invitation_id and it ...
1
vote
1answer
238 views
Migrating from one database structure to another
I have a custom-made site which I want to migrate to a commercial solution which appears more robust. For the sake of an example, let's say the site is currently running a forum script made from A-Z ...
1
vote
0answers
437 views
OLE DB Object field to SQL image field migration c#
I am trying to migrate OLE object field (access 2003) to SQL 2005 field, now I managed to get Doc file working (function copied),
but no luck with EXCEL/PDF and other files.
short sFlag = 0;
...
2
votes
1answer
434 views
CoreData model version migration
I've got a model that's migrating sucessfully but is taking 15-20 seconds. (Obviously this is going to have to be done as a background task not at startup or my app will timeout.)
A 20 second delay, ...
1
vote
1answer
437 views
vb.net + Convert a SQL database to a DBF database without provider, using text file
I work with vb.net
I have a sqlServer database and i need to migrate to a DBF database.
I know that a dbf file sctructure is a hexadecimal text file.
I want to generate this file without a ...
0
votes
1answer
732 views
update_all in rails - updating multiple rows using values from those rows
On rails 2.3.11
I'm trying to update multiple rows in a table with values from a different column in each different row (specifically I'm adding timestamps to a table that already existed, using ...
0
votes
2answers
282 views
Does changing data type decimal to float cause data loss?
I need to change a couple of fields in my database from:
:decimal, :precision => 8, :scale => 5
to:
:float
Does this migation result in data loss? The current data consists of integers ...
1
vote
3answers
196 views
Data Migrations on Production Database
Is there any way to have data migrations on production database not to be with SQL?
We are using MigratorDotNet and when we build a new funcionality for the application that changes the scheme of the ...
0
votes
1answer
293 views
Data extract, transform and load excel to sql and sql to excel asp.net
I'm looking for a free and open-source asp.net tool for data migration from Excel to SQL and vice versa, can you recommend one?
0
votes
1answer
243 views
Heroku + rails, rake db migrate worked locally and failed on heroku…
I'm changing the scale on a column like so....
change_column :options, :size, :decimal, :precision => 8, :scale => 8
It's working locally, however when running it heroku it's throwing the ...
0
votes
3answers
2k views
How to normalize a SQL Database
I was wondering if anyone had any suggestions on how to normalize a database. Now, I don't mean designing the structure, I mean how to actually move the database data from an old structure to the new, ...
0
votes
2answers
206 views
Database Schema To Another Database Schema Converter
Is there anyway that I could generate database from one schema to another?
For example, I would like to run my application from oracle to sql server or from sql server to postgresql?
I'm looking for ...

