I have connected Zeppelin to MySQL database.
I can retrieve the data, but have a problem.
How to create SQL in Zeppelin that allow user to retrieve the data by choosing the date range?
Zeppelin doesn't have a "date picker". It has input fields and select dropdown boxes
AFAIK, you cannot use form inputs with JDBC interpreters. Only Markdown, Shell, and Spark
It might be possible to add an AngularJS widget that somehow gave you two way binding to interpreter variables, it's just not provided out of the box
Dynamic form works in JDBC interpreter.
select ${num=1, 1(one)|2(two)} as num, ${date='2018-02-14'}::DATE as date
Related
I have a multilingual Microsoft Form. I want to show a column for Language in my Power Automate flow, but I cannot find a way.
When I export the data from my form manually, the export shows Language.
But, within Power Automate, I do not seem to have the option to include this.
It's a key part of my data, so any ideas how I can achieve this?
Thanks!
See below the Microsoft Form, its just a set of questions, but the user has the ability to change the language in the corner, because its a multilingual form.
When I set up my Power Automate flow, the only options to include are the actual questions from the form...there is no way to add language.
But I know Microsoft is storing that information because if I export the data without Power Automate, Language is automatically included.
You have to create an Forms formular which is synchronizing with an Excel sheet.
For this, go to your One Drive and create a new forms formular:
After adding the option to change the language in the forms, you have to synchronize your responses in Excel again:
Now, you get a new Excel file with answers and the column "language" from the forms.
You can access to this Excel in Power Automate to use the column language in the flow. For this, use the action "Get a row". The key value is the ResponseID of your forms response.
Im currently writing to a SQLite db file using Serilog.Sinks.SqLite. This works fine however i would like to create custom columns in this db file. I have managed to Enrich the properties column with various enrichers (ProcessName, EnviromentName etc) but i need to conform to a specific column format.
I cant find any worthwhile documentation on this package. How would one go about creating these custom columns?
Alternative solution:
How can i configure the (much beter documented) MSSQL sink to write to an SQLite file?
Thanks in advance!
As I read in this link "Report viewers can't modify data source parameters directly. However, if you've enabled date parameters for a BigQuery data source, and your report includes a date range control, viewers can use that control to request different starting and ending dates from the BigQuery data."
I'm facing a situation where I need to filter two periods at the same time and over the same data source:
Period where users installed my app.
Period where users made actions.
For now, Data Studio permits only one date parameter in customized queries for BigQuery (DS_START_DATE, DS_END_DATE). But what if I need an additional date parameter? Is there a solution to this need?
Include all the data from BigQuery to Data Studio first, then set custom date range for the specific charts/tables.
I'm kind of new to Access. I've got some experience working with integrating MySQL and Oracle with PHP to create web-based database search engines, but I am having difficulty understanding certain concepts with Access.
I've got a small database with around 200 entries with 20 fields each. I've written a form to search it by using VBA to run an SQL query against the database and displays the results in datasheet mode to a different form (is this the standard way of doing this, or is there a better way?)
I want to be able to add a button to export those results to excel (or csv or tab or whatever, it doesn't really matter). However, I'm not sure how to do this with the form results. Its easy with an entire database, but I can't find documentation on how to do this. Is there a way to do this? Or am I doing this wrong?
If at all required, I can provide more details.
You said "I've written a form to search it by using VBA to run an SQL query against the database and displays the results in datasheet mode to a different form".
If you mean an actual form in datasheet view, you can export that form's data to Excel with the DoCmd.OutputTo method.
DoCmd.OutputTo acOutputForm, "frmResults", acFormatXLS, _
"C:\SomeFolder\ExportedResults.xls"
However, if you're opening a query in datasheet view, rather than an actual form, you can export the query's result set.
DoCmd.OutputTo acOutputQuery, "qryResults", acFormatXLS, _
"C:\SomeFolder\ExportedResults.xls"
You can choose a different OutputFormat instead of Excel if you wish. Look at Access' Help topic for the OutputTo method to see the available choices.
for a data warehouse project I need to know about some best practices regarding custom report viewer filters/parameters.
Usually I use the standard parameter feature for reports, like multiple select boxes, check boxes, text boxes etc.. But for the current project some reports require more complex report parameters. E.g. a user wants to analyze some measures. For that the user needs to set a filter on a specific address. There are over 100.000 address to choose from, so he has to have the ability to search for an address (full text). Since such features cannot be done with the standard parameters, I will have to create custom params within a ASPX page which are then passed to the report viewer control.
So my question is: Are there any best practices on how to create custom parameters? Did anyone had similar problems, if so, how did you solve it?
Create your parameters on a simple web form that queries valid values from the database. Then Pass the parameters to the report server via the URL. Here is the documentation for Passing parameters via URL string
http://msdn.microsoft.com/en-us/library/ms152835.aspx