RE: [firebird-support] Name longer than database column size

2018-08-10 Thread Hugo Eyng hugoe...@msn.com [firebird-support]
: firebird-support@yahoogroups.com Assunto: Re: [firebird-support] Name longer than database column size Hi, i suppose you have name longer in your particular select statement. This can be e.g. in aliasing a field Select a.x as veryLongAliasedNameLongerThen31 from ... But only you can tell

Re: [firebird-support] Name longer than database column size

2018-08-08 Thread liviuslivius liviusliv...@poczta.onet.pl [firebird-support]
Hi, i suppose you have name longer in your particular select statement. This can be e.g. in aliasing a field  Select a.x as veryLongAliasedNameLongerThen31 from ... But only you can tell in what exact place you got this error Regards,Karol Bieniaszewski null

[firebird-support] Name longer than database column size

2018-08-08 Thread Hugo Eyng hugoe...@msn.com [firebird-support]
Hello. ​ The subject was already discussed before, but I am facing a trouble.​ ​ I was using FB 2.5 and than I migrated DB to FB 3.0.3. Now when I open my application it shows the message "Name longer than database column size".​ ​ I searched all the metadata and did not find any object longer

RE: [firebird-support] "Name longer than database column size." on already compiled SP

2017-09-06 Thread 'Leyne, Sean' s...@broadviewsoftware.com [firebird-support]
> But, how that variable ended there? The SP is actually working, and I can get > the DDL with 33 char lenght variable name. >Could be a previous FB bug? Almost certainly. The bad variable name could have existed for years, only a change to the DDL/SP text would have caused the text to be

Re: [firebird-support] "Name longer than database column size." on already compiled SP

2017-09-06 Thread Jorge Andres Brugger jorge.brug...@gmail.com [firebird-support]
Thanks Sean. But, how that variable ended there? The SP is actually working, and I can get the DDL with 33 char lenght variable name. Could be a previous FB bug? Regards 2017-09-06 14:29 GMT-03:00 'Leyne, Sean' s...@broadviewsoftware.com [firebird-support] : >

RE: [firebird-support] "Name longer than database column size." on already compiled SP

2017-09-06 Thread 'Leyne, Sean' s...@broadviewsoftware.com [firebird-support]
> I already have this SP in a DB (compiled, and using it a lot): No object (including SP variable) name can be longer than 31 characters Sean

[firebird-support] "Name longer than database column size." on already compiled SP

2017-09-06 Thread Jorge Andres Brugger jorge.brug...@gmail.com [firebird-support]
I already have this SP in a DB (compiled, and using it a lot): > create or alter procedure SP_INGRESOS_PEDIDOS_POR_FECHAS ( > SUCURSAL smallint, > CODIGO_PRODUCTO integer, > FECHA_DESDE date) > returns ( > INGRESOS_PEDIDOS integer, > INGRESOS_PEDIDOS_FRACCIONES integer) > as