Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 12:54 AM
@KVNARK . Hi, I could see this question is already answered. But this is something I found, Please check.
By default, Databricks SQL notebooks limit the number of rows displayed to 1,000. However, you can increase this limit to display more than 1 Lakh (100,000) rows by changing the configuration setting for spark.databricks.query.displayMaxRows
.
To change the configuration setting, follow these steps:
- In the Databricks workspace, navigate to the cluster that you're using for your notebook.
- Click on the "Advanced Options" tab.
- In the "Spark" section, click on the "Edit" button next to "Spark Config".
- Add the following configuration setting:
- spark.databricks.query.displayMaxRows 10000 (or the desired maximum number of rows)
- Click "Confirm" to save the configuration change.
Thanks,
Vignesh