Click here to Skip to main content
15,896,606 members
Home / Discussions / Database
   

Database

 
GeneralRe: DataSets and XML Pin
Rickard Andersson2010-Nov-02 20:57
Rickard Andersson2010-Nov-02 20:57 
GeneralRe: access to a mysql-database Pin
Vasudevan Deepak Kumar9-Nov-02 0:19
Vasudevan Deepak Kumar9-Nov-02 0:19 
GeneralSerious and Dreaded OleDB Adapter DB2 Driver Crashing Problem Pin
Vasudevan Deepak Kumar7-Nov-02 20:00
Vasudevan Deepak Kumar7-Nov-02 20:00 
GeneralTrivial SQL (i think) Pin
alex.barylski7-Nov-02 11:33
alex.barylski7-Nov-02 11:33 
GeneralRe: Trivial SQL (i think) Pin
Paul Watson7-Nov-02 11:47
sitebuilderPaul Watson7-Nov-02 11:47 
GeneralRe: Trivial SQL (i think) Pin
alex.barylski7-Nov-02 12:58
alex.barylski7-Nov-02 12:58 
GeneralRe: Trivial SQL (i think) Pin
alex.barylski7-Nov-02 13:10
alex.barylski7-Nov-02 13:10 
GeneralRe: Trivial SQL (i think) Pin
Paul Watson7-Nov-02 21:08
sitebuilderPaul Watson7-Nov-02 21:08 
Hockey wrote:
MySQL

Doh, I just assumed you meant Microsoft SQL Server. I have about 2 hours experience with MySQL and most of it was spent cursing Big Grin | :-D

There are some differences between the TSQL that MS SQL Server uses and the SQL that MySQL uses.


*the following is pure guessing so I could be utterly wrong*

If I had to guess, the error seems to be saying that a in statement has a maximum of 30 returnable rows. There might be a setting in MySQL for this.

If none of that works then in answer to your other question about rather using a join..

SELECT
    Clients.ClientID, 
    Clients.AgencyID AS ClientAgencyID, 
    Agency.AgencyID, 
    Agency.Name AS AgencyName
FROM
    Clients FULL OUTER JOIN
    Agency ON Clients.AgencyID = Agency.AgencyID
WHERE    (Clients.ClientID IS NULL)


Sorry but I can't test it against a MySQL box so I do not know if it works on MySQL, works on MSSQL though.

As for performance I am no DBA so I really could not tell you which is faster.

Paul Watson
Bluegrass
Cape Town, South Africa

Ray Cassick wrote:
Well I am not female, not gay and I am not Paul Watson
GeneralRe: Trivial SQL (i think) Pin
markkuk8-Nov-02 2:08
markkuk8-Nov-02 2:08 
GeneralRe: Trivial SQL (i think) Pin
alex.barylski8-Nov-02 8:11
alex.barylski8-Nov-02 8:11 
GeneralSELECT ... FOR XML AUTO Pin
Alexandru Savescu6-Nov-02 23:42
Alexandru Savescu6-Nov-02 23:42 
GeneralSaving a recordset in an XML stream Pin
Alexandru Savescu5-Nov-02 23:33
Alexandru Savescu5-Nov-02 23:33 
GeneralRe: Saving a recordset in an XML stream Pin
Richard Deeming6-Nov-02 2:54
mveRichard Deeming6-Nov-02 2:54 
GeneralDatasets Pin
Scoop5-Nov-02 23:15
Scoop5-Nov-02 23:15 
GeneralRe: Datasets Pin
Alexandru Savescu5-Nov-02 23:37
Alexandru Savescu5-Nov-02 23:37 
GeneralRe: Datasets Pin
Paul Watson6-Nov-02 3:15
sitebuilderPaul Watson6-Nov-02 3:15 
GeneralRe: Datasets Pin
Scoop6-Nov-02 3:23
Scoop6-Nov-02 3:23 
GeneralRe: Datasets Pin
Paul Watson6-Nov-02 3:26
sitebuilderPaul Watson6-Nov-02 3:26 
Generalfeedback from stored proc Pin
SimonS5-Nov-02 22:11
SimonS5-Nov-02 22:11 
GeneralRe: feedback from stored proc Pin
Richard Deeming6-Nov-02 3:15
mveRichard Deeming6-Nov-02 3:15 
GeneralRe: feedback from stored proc Pin
SimonS6-Nov-02 18:58
SimonS6-Nov-02 18:58 
GeneralADO.NET Books Pin
Paul Selormey5-Nov-02 15:06
Paul Selormey5-Nov-02 15:06 
GeneralRe: ADO.NET Books Pin
Vasudevan Deepak Kumar6-Nov-02 3:57
Vasudevan Deepak Kumar6-Nov-02 3:57 
GeneralRe: ADO.NET Books Pin
Paul Selormey6-Nov-02 4:11
Paul Selormey6-Nov-02 4:11 
GeneralSQL Wildcard Search Pin
Richard Hudson4-Nov-02 22:40
Richard Hudson4-Nov-02 22:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.