0
votes
0answers
13 views

Attempted to read or write protected memory. This is often an indication that other memory is corrupt. (Microsoft.VisualStudio.OLE.Interop)

Every time i try to create a new Database diagram i get the error: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. ...
0
votes
0answers
34 views

sequencialy inserting value in a table for varchar datatype?

int,numeric datatype can be easily we use sequence to create more than values. but,in this case sometimes we get column values as "CLR002" for this type value what i do for inserting a data in a ...
0
votes
2answers
20 views

Update MySQL from MS SQL Server 2008

I have in Microsoft SQL Server 2008 R2 SP1 a Connect-Server with ODBC to a MySQL database. ODBC-Driver: MySQL ODBC 5.2a on Microsoft Windows Server 2008 R2 64bit All queries actually run properly. ...
2
votes
1answer
44 views

comparison operators in ms sql server

SELECT NULLIF(1 > 0, 1); In MySQL that returns NULL. In SQL Server it gives me a syntax error because of the <. eg. SELECT 1 > 0; That, too, works fine in MySQL, but not in SQL Server. Any ideas ...
1
vote
2answers
28 views

Programming for MySql and MSSql in VB.NET

I have a program written in VB.NET that as part of its function requires the use of a number of database classes. At the moment the classes are programmed specifically to use objects originating ...
0
votes
2answers
58 views

Whats wrong with query? wrong syntax error? Group by no working

I have written a query (SELECT TimeStamp, AVG(FwdHr), W FROM Meter_Data WHERE (TimeStamp Between 1370476500 AND 1370477100 AND DeviceID = '1' GROUP BY MeterID ORDER BY TimeStamp) UNION ...
1
vote
1answer
49 views

MS-SQL stored procedure to MySQL

can anybody help me to write the following MS-SQL sp to MySQL sp, use of this: CREATE PROCEDURE sp_InputWork @_DelimitedString nvarchar(MAX) AS BEGIN SET NOCOUNT ON; DECLARE @_DataRow ...
2
votes
2answers
34 views

how to export or import sql server database from sql server to mysql server through network

I want to connect mysql server system from mssql sever system through network because I want to import or export sql server database from mssql server system to mysql server system. can anybody tell ...
-1
votes
0answers
18 views

Transitioning existing structure/data from SQLServer to MySQL DB? [duplicate]

For my web application i was using sql server but we have decided to use mysql as database. Schema structure(Existing tables and data are same) is same. My question is how should i transition existing ...
1
vote
0answers
24 views

How to export MySQL table in a SQL Server syntax? [duplicate]

I am trying to export all of MySQL tables into a SQL Server. How can I generate an export that will automatically create the code to execute into MSSQL? I have Toad for MySQL if that helps. Thanks
0
votes
2answers
43 views

check inner join table existance

my tbl_module may consist on empty id, what i want to do is to perform a checking on it, but there are errors return to me, my query doesnt work SET @IID = 1 SELECT t1.ID, t1.Module FROM tbl_user t1 ...
1
vote
0answers
20 views

Not retrieving schema list from source when migrating from MSSQL to MySQL using Workbench

I'm trying to migrate my database which is in MS SQL Server to MySQL, I'm using Workbench to do so. I get connection to both databases but get the following warning: Retrieve schema list from source. ...
0
votes
3answers
19 views

Selecting values through mapping table.

I have three tables senderTable, recieverTable and a mapTable. I am trying to write a query to get output of senderName and recieverName senderTable senderID senderName recieverTable recieverID ...
-2
votes
1answer
57 views

translate query from MSSQL to MYSQL [closed]

i have following query that i need to translate from MSSQL to MYSQL select TOP 7500 Verdunster1B_Digital.LocalCol, Verdunster1B_Digital.Funktion_Heizband_Verdunster1B, ...
0
votes
0answers
46 views

converting sql server database to mysql, needing change table structure and column names?

I need to achieve: similar demands in this question: How to export data from SQL Server 2005 to MySQL change table structure and column names, for example: Source(sql server): Table A id ...
-2
votes
0answers
36 views

Good database for C# deployment? [closed]

I have an application in C# but still not decided on which database to use. I have these choices but still not decided which database is good to deploy? My concern is more on deployment and just ...
0
votes
1answer
35 views

Is it Possible to declare Cursor within IF Condition in MySQL UDF

Is it possible for me to Declare cursor inside if statement? if possible how could i make it? because i just made cursor like this CREATE FUNCTION `fn_test`( ProductID BIGINT(20) ) RETURNS ...
2
votes
1answer
35 views

How to transfer Data automaticly between MySql and Sql Server back and fourth?

I need to build a procedure to read data from SQL Server and insert it into MySql. More I also need another procedure to read data from MySql Server and insert it into SQL Server. I never done such a ...
0
votes
4answers
34 views

Add MsSQL via PHP INI

I just uploaded and overwrote the old php.ini with a new one that was blank and now all my mssql_connect() functions are not working. What is the commange to enable this again?
0
votes
2answers
33 views

Working with a MSSQL DB and a MySQL DB

I am working on a PHP script in a server. I have two databases: The first one is a MySQL DB and it is already imported to my server, so it is connected successfully. The second one is a MSSQL DB and ...
1
vote
2answers
35 views

Stored Procedure for Deleting a Record from three tables

I am new to stored procedure so i need very much help from you folks,I have three tables Event_Session,Event_Speaker,Session_Speaker. I want to delete Event_Session Record by passing Event_session_id ...
-2
votes
0answers
29 views

disparity between load bulk data to sql server, my sql and oracle [closed]

disparity between load bulk data to sql server, my sql and oracle from csv file using jdbc... sql-server:- BULK INSERT dbo.TableForBulkData FROM 'C:\BulkDataFile.csv' WITH ( FIELDTERMINATOR = ',', ...
0
votes
0answers
31 views

MySQL equivalent of SQL Server merge replication?

I want the following situation: 1 mysql server on the servermachine with 1 database. In-house, all applications read/write to this database. Replications off that database on multiple laptops. ...
0
votes
1answer
44 views

Analog of OUTER APPLY in other RDBMS (not SQL Server)

I'm using SQL Server at work, and I have some nice tricks with OUTER APPLY clause which helps me do not repeat code. For example, if I have a table like this: create table Transactions ( ID ...
0
votes
2answers
58 views

Bulk convert log file date time format from 12 hour clock to 24 hour clock for mySQL database

I am creating a web app to analyze data from a client's custom database. I am having difficulty finding a way how to convert the client's log file entries from 12 hour clock to 24 hour clock. The ...
0
votes
0answers
27 views

Handling transactions in MVC when there are 2 or more different databases

I am writing an MVC PHP web application. I have a bunch of models which does the actual SQL query and can call methods from another model. for example, since a customer can have multiple projects, ...
0
votes
2answers
70 views

Is it possible to save data to two databases using woocommerce?

I have a word press site using woo commerce cart and i would like to save my Customer details to another sql Server database we have. Is it possible to do this on a successful payment by saving to two ...
-5
votes
1answer
39 views

convert sql server file into mysql [closed]

how can i convert MSSQl file into mysql ... ?if it is not possible then please help me in this file.. here is my ms sql server file ..it has 4 tables http://pastebin.com/VQVYpsHX i want to know ...
0
votes
2answers
50 views

select into in mysql

I am a MSSQL user and now I am converting my database to MySQL. I am writing the following query in MySQL: select * into new_tbl from tbl And I get the following error Error : Undeclared variable ...
2
votes
4answers
40 views

Alias in mysql select query

I am a MSSQL user now I am converting my database to MySQL, I am writing following query in MySQL. select col1 as [My Column] from table1 Error : You have an error in sql syntax
0
votes
1answer
24 views

cast in mysql query

I am converting my SQL database to MYSQL and I have problem using cast in mysql, please help me to convert this SQL query to mysql Here col1 is type of varchar (storing values(01,02,03,04)) ...
2
votes
1answer
101 views

Convert SQL script to MySQl script

I am new to MYSQL and I have a script that I have crated in SQL and need to convert that script into a MySQL script: ;WITH cte (id, ApplicationName, ActivityDate, username) AS ( SELECT ...
-4
votes
3answers
64 views

get result from more than one sql as column wise

I have different sql which returns different result.And I need to get all them as column wise. But I have no idea how to do it.Can anyone please help me on this please? here is my sql below >>> ...
-1
votes
1answer
64 views

Moving from MS Access to SQL Server [closed]

I'm an Access developer tasked with learning SQL server and giving the requirements for the server. My question for the community is a recommendation on what server specs I might recommend for the ...
0
votes
1answer
68 views

Need, recommendations on choosing a good database driver [closed]

I'm almost done with the html/css side of my site and want to add database that will allow users to save profiles and search it using PHP search engine. However I've never worked with MYSql before and ...
-1
votes
1answer
50 views

A Simple SQL “City Name” - “Country Name” Mapping Query [closed]

I've gone through many question and answers on here and made many searches to find a "SIMPLE" country names to city names mapping SQL tables without any luck. MaxMind, Geolocation, Geoname, all ...
3
votes
1answer
70 views

What is the MySQL equivalent of SQL Server's UPDATE() trigger function?

I need help converting this MS SQL update trigger to MySQL. My problem is with converting the MS SQL UPDATE() function, which identifies the specific columns that were updated: ALTER TRIGGER ...
0
votes
2answers
22 views

Is there an alternative to SQL-Server's uniqueidentifer datatype in MySQL?

I'm migrating a login page from one server to another. The old server hosts an SQL-server database and the new one MySQL. The login page uses the guid from the user table to identify users with a ...
0
votes
1answer
31 views

MySQL Workbench Database Migration - data truncates after apostrophe

I'm using MySQL Workbench Data Migration Wizard to migrate an MS SQL Server R2 database to MySQL database. The schema and data are migrating properly but for the fields having apostrophe, the data ...
0
votes
1answer
38 views

Daily updates from SQL server to MySQL

I'm building an e-commerce website, using PHP (Codeigniter) and MySQL. The products table has a stock field, which needs to be updated daily (perhaps several times a day). The source for these ...
0
votes
1answer
19 views

Is There a Service/Product/Plugin for wordpress that can send/receive data to/from a Microsoft SQL database [closed]

I have a client with a Point of Sale system called Counterpoint, which runs off of a Microsoft SQL server. The client's ecommerce site is built in Wordpress with the woocommerce framework, which ...
-2
votes
3answers
85 views

SELECT Query Best practice

I know that SELECT * is considered bad practice since it can return un-needed information. But what about this: Say i have a table with 4 columns, columns 1-4 Is there any difference (like fast, ...
0
votes
1answer
26 views

Database location in relation to main web server

Ive recently taken the plunge and started renting a VPS for my web projects. As the demands on the system get higher so do the costs. MY VPS is US based due to costs, but Im based in Germany. ...
0
votes
0answers
43 views

Data lost at migration mssql server to mysql

I'm using Mysql Workbench to convert a sql server database to mysql. Everything's working fine, except that text fields are cut after a few words. The field type is varchar(8000). Any ideas how this ...
0
votes
0answers
47 views

Rails Active Admin PUT not updating boolean values (SQL Server)

I switched to SQL Server on production, and realized that Active Admin PUT calls aren't updating some boolean values in my database. The PUT calls will return a 302, and not update the record even ...
0
votes
1answer
82 views

Mule parameters in SQL queries

I'm trying to query two databases f102 which is MySQL and f100 which is SQL Server. The query to the MySQL server works but the SQL Server connector doesn't like the "#[header:INBOUND:company] as ...
0
votes
1answer
47 views

measuring the insert time and query time on mysql-server using sqlalchemy

I have a python program using sqlalchemy that accesses the databse running a remote server.The remote server has mysql-server5.5 running on it.The relevant portions of the code is given below. log = ...
0
votes
3answers
64 views

ASP.NET SQL Insert Error

In ASP.NET, I'm trying to configure a DetailsView control with the insert statement. I run the insert command and I get the error: "Column 'Address' cannot be null" My SQL: INSERT INTO ...
-2
votes
3answers
78 views

Sql Result IN a Query

dont blame for the database design.I am not its database architect. I am the one who has to use it in current situation I hope this will be understandable. I have 3 tables containing following data ...
0
votes
2answers
46 views

Entries a specific distance away from others

My table has an NAME and DISTANCE column. I'd like to figure out a way to list all the names that are within N units or less from the same name. i.e. Given: NAME DISTANCE a 2 a 4 a 3 a 7 ...

1 2 3 4 5 29