Error "URI length exceeds the configured limit of 2048 characters"

Hi ,

Im getting the above error when I use the Search Box in the Data Browser tab on the console interface …(“SQL-Search” option is off, so its plain text)

The thing is I search for less then 15 chars sometimes and I get the above error …any reason why ?

Non-sql plain text search in console currently works by merely hiding the real where clause from your eyes. Effectively when you plain-text-search for a string line ‘mystring’ the request sent is

yourcolumn1 like '%mystring%' or yourcolumn2 like '%mystring%' or yourcolumn3 like '%mystring%' or ...

So if your table has lots of columns, it is quite possible that this hidden query grows up to more than 2048 characters.