sql2000 to mysql

2004-08-24 Thread Tim Winters
Hello,
Can someone advise me of the best/easiest way to move an entire DB (Tables 
and data) from sql2000 (my client) to mySQL (my System)?

I need to advise someone on how I wish the data sent to me.
Any help would be appreciated.
Thanks,
Tim
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


RE: sql2000 to mysql

2004-08-24 Thread Tim Winters
Hi Victor,
Just Tables and Data.
Ideally scripted to create the tables and insert the data.  will sql2000 
product something similer to a .sql file which can simple be run as a script?

Thx
At 12:45 PM 24/08/2004, Victor Pendleton wrote:
Are you wanting to move Foreign keys, Triggers, Stored procedures and the
like as well or just the data?
-Original Message-
From: Tim Winters
To: [EMAIL PROTECTED]
Sent: 8/24/04 10:36 AM
Subject: sql2000 to mysql
Hello,
Can someone advise me of the best/easiest way to move an entire DB
(Tables
and data) from sql2000 (my client) to mySQL (my System)?
I need to advise someone on how I wish the data sent to me.
Any help would be appreciated.
Thanks,
Tim
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Newbie Table question

2003-08-29 Thread Tim Winters
Hi,
 
How do you copy a table in mySQL.
 
I know I can do it in phpMyAdmin but I want the actual syntax.
 
 
Thanks!!
 
 
Tim Winters
Creative Development Manager
Sampling Technologies Incorporated
 
1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115
 


Newbie SELECT problem

2003-07-02 Thread Tim Winters
Hello everyone,
 
I have the following select statement
 
SELECT  DISTINCT sessionID, userID, date, time
FROM sti_tracking
WHERE userID = 999
 
What I want is to have only records with the userID of 99 and where the
sessionID is distinct (meaning only on of each session id).  Neither
sessionID nor userID are keys or unique.
 
Obviously this isn't working.
 
Can someone suggest how this should be done?
 
Tim Winters
Creative Development Manager
Sampling Technologies Incorporated
 
1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115
 


RE: Newbie SELECT problem

2003-07-02 Thread Tim Winters
Hello,

Very sorry to everyone about the confusing message.  I should have read
it over again before pressing send.

First of all I'm looking for userID 999.  A typo in the message not in
the code.

The table is set up like this.

Table name sti_tracking

hitID (primary key) (autonumber)
userID
sessionID
date
time
pageName


What it's for is a simple page tracing counter for a FLash site.  Each
time a section is accessed a new row is written in the table.

userID identifies the user. So if the user comes to the site today and
comes back again tomorrow the userID will be maintained.  

sessionID identifies 1 visit to the site.  During 1 visit a user may
view many sections within the site but as long as he doesn't close the
browser the session number remains the same.  Date and time will always
be different (as will the hitID obviously).

So what I want to be able to do is single out a user (999) and retrieve
all the sessions he was involved in.  But I don't want duplicate session
numbers (one is enough).

Make any more sense?



Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: William R. Mussatto [mailto:[EMAIL PROTECTED] 
Sent: July 2, 2003 2:13 PM
To: [EMAIL PROTECTED]
Subject: Re: Newbie SELECT problem

 Hello everyone,

 I have the following select statement

 SELECT  DISTINCT sessionID, userID, date, time
 FROM sti_tracking
 WHERE userID = 999

 What I want is to have only records with the userID of 99 and where
the
 sessionID is distinct (meaning only on of each session id).  Neither
 sessionID nor userID are keys or unique.

 Obviously this isn't working.

 Can someone suggest how this should be done?

 Tim Winters
 Creative Development Manager
 Sampling Technologies Incorporated
Had a similar experience, and I've been doing it long enough to know
better. 'DISTINCT' would work only if date and time returned the
same
values.

Are '999' and '99' supposed to be the same?
Let me see if I can rephrase what you are looking for:
a.  For user '999' give me the information where there is only one
record
with a given SessionID?

b.  For user '999' for each sessionID give me the unique Date and Time
values.

c. something else entirely.

Also, are you running this in a procedureal language (e.g., perl, java)?
This will give us other options.


William R. Mussatto, Senior Systems Engineer
Ph. 909-920-9154 ext. 27
FAX. 909-608-7061



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: NEWBIE QUESTION: Copying Databases from local to server

2003-06-05 Thread Tim Winters
Thanks everyone for the replies.

I know I should probably be using phpMyadmin or the command line to
export my info out of my local mySQL setup but...

I'm using mySQL control center.  Using this tool I can't seem to export.
There is a button to do it but it is always greyed out.  Is there a step
I'm missing?

thx

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: Becoming Digital [mailto:[EMAIL PROTECTED] 
Sent: June 4, 2003 3:35 PM
To: [EMAIL PROTECTED]
Subject: Re: NEWBIE QUESTION: Copying Databases from local to server

I'd suggest using phpMyAdmin on the remote server for your setup.
Depending on
the application, it might make further transfers easier in the future.

Edward Dudlik
Becoming Digital
www.becomingdigital.com


- Original Message -
From: Creative Solutions New Media [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, 04 June, 2003 00:49
Subject: NEWBIE QUESTION: Copying Databases from local to server


Hello,

I have several databases currently located on my local machine that I
need
to copy to a remote server.

Con someone explain the process and details of how this is done?

Thanks,

Tim Winters
Manager, Creative Development
Sampling Technologies Incorporated (STI)
[EMAIL PROTECTED]
[EMAIL PROTECTED]
W: 902 450 5500
C:  902 430 8498




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]





-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]