mongoDB query has got error - mongodb-query

I have written a query in mongoDB and got an error. Please some one help me in resolving it
Query is:
> db.Accounts.update(_id:t.source,pendingTransaction:{$ne:t._id}},{$inc:{balance
:-t.value},$push:{pendingTransactions:t._id}});
ERROR IS:
2014-10-10T20:27:02.861+0530 SyntaxError: Unexpected token :

db.Accounts.update({ the { is missing ...
db.Accounts.update({
_id:t.source,
pendingTransaction:{$ne:t._id}},
{$inc:{balance
:-t.value},$push:{pendingTransactions:t._id}});

Related

SQL Error [42581]: UCAExc:::5.0.1 unexpected token : INTO required: FROM : line: 2

when I'm trying creating new table in access db via dbeaver using the following code
SELECT *
INTO new_tab
FROM tab
WHERE col_name = smth
I obtain error
"SQL Error [42581]: UCAExc:::5.0.1 unexpected token : INTO required: FROM : line: "
What can be the reason of this problem?
I've updated hsqldb.jar to version hsqldb-2.7.1
Please direct me to way where to dig the neccessary information to resolve this bug

Prisma native query doesn't work.. why? why

Before I post it, I ask to them, But the CS center is not responded.
Here is my code.
const response = await this.prisma
.$queryRaw<Gym>`SELECT * FROM \`Gym\` WHERE \`status\` != 'WITHDRAWAL' LIMIT 1 OFFSET 0;`;
I tried too,
"prisma.$queryRaw`query`",
"prisma.$queryRaw<Model>`query`",
"prisma.$queryRaw<Model[]>`query`",
"prisma.$queryRaw(Prisma.sql`query`)",
"prisma.$queryRaw<Model>(Prisma.sql`query`)"
But, output is error
SELECT * FROM `Gym` WHERE `status` != 'WITHDRAWAL' LIMIT 1 OFFSET 0; []
prisma:error
Invalid `prisma.$queryRaw()` invocation:
Raw query failed. Code: `N/A`. Message: `N/A`
[Nest] 17720 - 2023. 01. 12. 오후 6:09:37 ERROR [ExceptionsHandler]
Invalid `prisma.$queryRaw()` invocation:
Raw query failed. Code: `N/A`. Message: `N/A`
Error:
Invalid `prisma.$queryRaw()` invocation:
Raw query failed. Code: `N/A`. Message: `N/A`
at RequestHandler.handleRequestError (D:\practice_ljy\trainning-api\node_modules\#prisma\client\runtime\index.js:35024:13)
at RequestHandler.handleAndLogRequestError (D:\practice_ljy\trainning-api\node_modules\#prisma\client\runtime\index.js:34996:12)
at RequestHandler.request (D:\practice_ljy\trainning-api\node_modules\#prisma\client\runtime\index.js:34991:12)
at Proxy._request (D:\practice_ljy\trainning-api\node_modules\#prisma\client\runtime\index.js:36082:16)
and the CS center is bad to me.
they don't answer correctly.
I hope that find the answer in here..
my Prisma&client version: 4.8.1
I want to know the cause of failure. the error Code is `N/A`, And I don't recognized.

Syntax error: Expected end of input but got "-" at [5:17] error in BigQuery exercise

I`m working with an exercise from the Google Data Analysis Course, that asks me to write and execute the following query:
SELECT
station_name,
ridership_2013,
ridership_2014
ridership_2014-ridership_2013 AS change_2014_raw
FROM
bigquery-public-data.new_york_subway.subway_ridership_2013_present
but every time I try to run it, I get the same error:
Syntax error: Expected end of input but got "-" at [5:17]
I think that the error is the dash from the subtraction between ridership_2014-ridership_2013, but I'm not sure if it`s something from my keyboard or something else,
I'll appreciate some of your help on this,
Thank you!!

Error when connecting Hive with kibi?

I am using kibi-community-demo-full-4.6.4-linux-x64 version.
In datasource:
"connection_string": "jdbc:hive://localhost:10000/root",
"libpath": "/home/pare/Downloads/jar/",
"drivername": "org.apache.hadoop.hive.jdbc.HiveDriver",
"libs": "hive-jdbc-0.11.0.jar,hive-metastore-0.11.0.jar,libthrift-0.9.1.jar,hive-service-0.13.1.jar,hive-jdbc-1.2.1.2.3.2.0-2950-standalone.jar,hadoop-common-2.7.1.2.3.2.0-2950.jar",
After that when in queries I write a query it will show error like:
Queries Editor: Error 400 Bad Request: Error running static method java.lang.IllegalArgumentException: Bad URL format at org.apache.hive.jdbc.Utils.parseURL(Utils.java:185) at org.apache.hive.jdbc.HiveConnection.(HiveConnection.java:84)
What is the error can any one explain me how to solve it?
I am able to connect after changing the jars version.
and also I changed the driver name "org.apache.hive.jdbc.HiveDriver".

Yii CDbException.. invalid input syntax for integer: "1,075"

I started receiving this error from a production site since this morning and I'm wondering why I don't get the same in UAT or the developer environment..
Is any one familiar with an error like this ?
CDbException
Description
CDbCommand failed to execute the SQL statement: SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for integer: "1,076"
Source File
C:\inetpub\wwwroot\framework1.0\db\CDbCommand.php(372)
00360: }
00361:
00362: if($this->_connection->enableProfiling)
00363: Yii::endProfile('system.db.CDbCommand.query('.$this->getText().')','system.db.CDbCommand.query');
00364:
00365: return $result;
00366: }
00367: catch(Exception $e)
00368: {
00369: if($this->_connection->enableProfiling)
00370: Yii::endProfile('system.db.CDbCommand.query('.$this->getText().')','system.db.CDbCommand.query');
00371: Yii::log('Error in querying SQL: '.$this->getText().$par,CLogger::LEVEL_ERROR,'system.db.CDbCommand');
00372: throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}',
00373: array('{error}'=>$e->getMessage())));
00374: }
00375: }
00376: }
Attached a screenshot too.. the application is based on yii framework and postgress database.
Quick reply is highly appreciated.
The issue was actually because used number_format() function to a primary key and later in a code section it inputs the formatted number to search query.. i.e select * from user where id = 1,075 (instead of id = 1075)
Changing the number_format() function to apply only on selected areas worked.