Проблема импорта данных вasticsearch в laravel с использованием Oracle - PullRequest
0 голосов
/ 05 ноября 2019

кто-нибудь может мне помочь? Когда я пытаюсь импортировать данные вasticsearch, я получаю эту ошибку ниже. Используемая база данных - Oracle.

Когда я делаю это:

php artisan scout:import "Amp\XIP\LineSearch

Я получаю эту ошибку ниже:

Illuminate\Database\QueryException : ORA-01741: illegal zero-length identifier (SQL: select t2.* from ( select rownum AS "rn", t1.* from (select * from "SA"."TABLE_X_SEARCH_CUSTOMER" order by "" asc) t1 ) t2 where t2."rn" between 1 and 500)

at /Users/amp/Sites/amp3/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664
660| // If an exception occurs when attempting to run a query, we'll format the error
661| // message to include the bindings with SQL, which will make this exception a
662| // lot more helpful to the developer instead of just the database's errors.
663| catch (Exception $e) {

664| throw new QueryException(
665| $query, $this->prepareBindings($bindings), $e
666| );
667| }
668|

Exception trace:

1 Yajra\Pdo\Oci8\Exceptions\Oci8Exception::("ORA-01741: illegal zero-length identifier")
/Users/amp/Sites/amp3/vendor/yajra/laravel-pdo-via-oci8/src/Pdo/Oci8.php:122

2 Yajra\Pdo\Oci8::prepare("select t2.* from ( select rownum AS "rn", t1.* from (select * from "SA"."TABLE_X_SEARCH_CUSTOMER" order by "" asc) t1 ) t2 where t2."rn" between 1 and 500")
/Users/amp/Sites/amp3/vendor/laravel/framework/src/Illuminate/Database/Connection.php:326

Я использую этот пакет https://github.com/babenkoivan/scout-elasticsearch-driver

1 Ответ

0 голосов
/ 05 ноября 2019

вы не можете использовать заказ следующим образом: заказ ""

вместо того, чтобы использовать заказ по нулю

...