[ASP.NET] Impostare SET OPTION SQL_BIG_SELECTS = 1

di il
1 risposte

[ASP.NET] Impostare SET OPTION SQL_BIG_SELECTS = 1

Salve,
ho un progetto che gira su un db mysql ed ho fatto sia una versione exe in vbnet per l'utilizzo in locale sia alcune pagine web in aspnet per l'utilizzo da remoto

A causa di query con risultati di notevoli dimensioni mi capita l'errore "The SELECT would examine more than MAX_JOIN_SIZE rows;"

In locale da vbnet effettuo la seguente impostazione "SET OPTION SQL_BIG_SELECTS = 1" prima di richiamare la query e tutto funziona bene
In problema invece è in aspnet che non mi sembra portare i risultati sperati

Ho provato sia :
SqlDataSource2.SelectCommand = "SET OPTION SQL_BIG_SELECTS = 1;"
SqlDataSource2.DataBind()

SqlDataSource2.SelectCommand = "la mia query"
SqlDataSource2.DataBind()

oppure

SqlDataSource2.SelectCommand = "SET OPTION SQL_BIG_SELECTS = 1; la mia query"
SqlDataSource2.DataBind()

Ma non riesco a risolvere

Qualcuno riesce ad aiutarmi ?

Grazie !

1 Risposte

Devi accedere o registrarti per scrivere nel forum
1 risposte