Dear I am using ast 1.4.19 with postgres. the realtime extension was done properly, but the two following warning was reported, 1)realtime_pgsql: Postgresql RealTime: Could not find any rows in table extensions. 2)realtime_multi_pgsql: Postgresql RealTime: Could not find any rows in table extensions. the interesting part is, the asterisk executes the dial for incoming calls via extensions ,thru database, it means , the asterisk can find a row in table the following is the asterisk output: best Mani Connected to Asterisk 1.4.19 currently running on IS-4377 (pid = 17670) Verbosity is at least 3 -- Executing Dial("SIP/11.11.11.11-09feed30", "SIP/202188590963 at 33.33.33.33|60") -- Called 202188590963 at 33.33.33.33 [Apr 27 08:06:28] WARNING[17712]: res_config_pgsql.c:207 realtime_pgsql: Postgresql RealTime: Could not find any rows in table extensions. [Apr 27 08:06:28] WARNING[17712]: res_config_pgsql.c:370 realtime_multi_pgsql: Postgresql RealTime: Could not find any rows in table extensions. -- SIP/91.186.198.18-09ff42d8 is making progress passing it to SIP/11.11.11.11-09feed30 [Apr 27 08:06:31] NOTICE[17712]: rtp.c:788 process_rfc3389: Comfort noise support incomplete in Asterisk (RFC 3389). Please turn off on client if possible. Client IP: 33.33.33.33 == Spawn extension (DID, 202188590963, 1) exited non-zero on 'SIP/11.11.11.11-09feed30' [Apr 27 08:06:32] WARNING[17712]: res_config_pgsql.c:207 realtime_pgsql: Postgresql RealTime: Could not find any rows in table extensions. [Apr 27 08:06:32] WARNING[17712]: res_config_pgsql.c:370 realtime_multi_pgsql: Postgresql RealTime: Could not find any rows in table extensions. IS-4377*CLI> ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
On Sunday 27 April 2008 01:46:23 Pezhman Lali wrote:> I am using ast 1.4.19 with postgres. > the realtime extension was done properly, but the two > following warning was reported, > 1)realtime_pgsql: Postgresql RealTime: Could not find > any rows in table extensions. > 2)realtime_multi_pgsql: Postgresql RealTime: Could not > find any rows in table extensions.Those warnings are safe to ignore. They really should be at log level DEBUG, not WARNING, because queries will fail to retrieve any results much of the time. This is due to our searching for matches, which starts at the most specific match first and falls back to more general matches. So any match for extensions that employs a pattern match will always generate one query which succeeds, but fails to return any results. -- Tilghman
On Sun, Apr 27, 2008 at 12:05 PM, Tilghman Lesher <tilghman at mail.jeffandtilghman.com> wrote:> On Sunday 27 April 2008 01:46:23 Pezhman Lali wrote: > > I am using ast 1.4.19 with postgres. > > the realtime extension was done properly, but the two > > following warning was reported, > > 1)realtime_pgsql: Postgresql RealTime: Could not find > > any rows in table extensions. > > 2)realtime_multi_pgsql: Postgresql RealTime: Could not > > find any rows in table extensions. > > Those warnings are safe to ignore. They really should be at log level DEBUG, > not WARNING, because queries will fail to retrieve any results much of the > time. This is due to our searching for matches, which starts at the most > specific match first and falls back to more general matches. So any match for > extensions that employs a pattern match will always generate one query which > succeeds, but fails to return any results. > > -- > TilghmanNot to start any huge debate, but what is the best (most tested and stable) database setup? I am under the impression that MySQL plus the ODBC driver is "the best". Thanks, Steve Totaro