Copy Query Code is not available

YongDae Kim shared this question 4 years ago
Answered

I purchased personal license and added this license . when runing "COPY QUERY CODE" , following error message poped up


You are using the free/personal edition of NoSQLBooster for MongoDB and the "Copy Query Code" feature is disabled, to unlock this feature, you need a commercial license.

Replies (1)

photo
1

The Personal Edition does not support Kerberos (GSSAPI), and LDAP (PLAIN) authentication and the feature "convert MongoDB query code to target languages, e.g., Java, c#..." is limited.

If you want to convert your code to shell script, you can use "cursor.getShellScript" method.e.g.

db.testCollection.find({})  
  .projection({})
  .sort({_id:-1})
 .limit(11)
 .getShellScript()

Leave a Comment
 
Attach a file