Visual Studio Tabular Model to Data Lake - azure-data-lake

How can create a tabular model over Azure Data Lake?
I am able to create the Power BI Model with Azure Data Lake and upload it to the Azure Analysis Server. But, I need to create a tabular model over Azure Data Lake.
When I check the data sources, I don't see Azure Data Lake. I see it in Power BI Get Data.

You need to select Compatibility level SQL Server 2017/ Azure Analysis Services (1400) and then you will have ADLS in data sources.

Related

Data transfer from on prem to azure synapse database with out using ADF

Can we move data from onprem sql server to azure synapse with out using a azure data factory?
My main intention behind this is not to have intermediate storage of data in blob or storage container. the bulk insert works in ADF but do we have any other option here.
In case if this is a 1 time activity, you can use database migration assistant tool.
Else you can also leverage ssis to transfer data between on prem sql and synapse.

Function app to load data from .csv in azure data lake store to azure sql server

I have a .csv file in azure data lake store, Is there a way to load the data from that file to azure sql server using Function app? Currently I am using ADF to load the data.
Thanks,
Rav
There is an Azure Data Lake Store Binding for Azure Functions. It supports input and output bindings.
Samples

Azure Data Factory Copy Activity to Copy to Azure Data Lake Table

I need to Copy data incrementally from On-Prem SQL server into Table in Azure Data Lake Store.
But when creating Copy Activity using Azure Portal, in the Destination I only see the folders(No option for Tables).
How can I do scheduled On-prem table to Data Lake Table Syncs?
Data Lake Store does not have a notion of tables. It is file storage system (like HDFS). You can however use capabilities such as Hive or Data Lake Analytics on top of your data stored in Data Lake Store to conform your data to a schema. In hive, you can do that using external tables, while in Data Lake Analytics you can run a simple extract script.
I hope this helps!
Azure Data Lake Analytics (ADLA) does have the concept of databases which have tables. However they are not currently exposed as a target in Data Factory. I believe it's on the backlog, although I can't find the reference right now.
What you could do is use Data Factory to copy data into Data Lake Store then run a U-SQL script which imports it into the ADLA database.
If you do feel this is an important feature, you can create a request here and vote for it:
https://feedback.azure.com/forums/327234-data-lake
ADLA Databases and tables:

How to push the data from Azure Data Lake to SSAS ( Azure analysis Service) ? Is it possible?

Azure data lake is my data source. I want to push data from azure data lake to Azure Analysis Service (SSAS). How i can do that?
I think it is not supported. In following documentation of Azure Analysis Services, Azure Data Lake is not listed in Data Source providers list:
https://opbuildstorageprod.blob.core.windows.net/output-pdf-files/en-us/Azure.azure-documents/live/analysis-services.pdf
This is supported.
You need to use a compatibility level of 1400. I have the latest Azure Data Lake plugin for VS2015. You would need to add Data Lake Store as a data source.
There is a good series of blogs here which give you insight of building azure analysis service on top of BLOB storage. The same principle can be applied to data lake store as well:
Part 01 :
https://blogs.msdn.microsoft.com/analysisservices/2017/05/15/building-an-azure-analysis-services-model-on-top-of-azure-blob-storage-part-1/
Part 02 :
https://blogs.msdn.microsoft.com/analysisservices/2017/05/30/building-an-azure-analysis-services-model-on-top-of-azure-blob-storage-part-2/
Part 03 :
https://blogs.msdn.microsoft.com/analysisservices/2017/06/22/building-an-azure-analysis-services-model-on-top-of-azure-blob-storage-part-3/
Update
This blog goes in details how to do this. the basic premise is the same as the blob storage backed SSAS process. They however introduced a data lake store connector.
https://blogs.msdn.microsoft.com/analysisservices/2017/09/05/using-azure-analysis-services-on-top-of-azure-data-lake-storage/

How to move sharepoint list or excel file to azure sql dw?

I want to copy data from sharepoint to microsoft azure sql DW using azure datafactory or alternative service. Can I do this. Please anyone help me with this.
You can do this by setting up a data pipeline using Azure Data Factory to Azure blob storage. Afterwards you can use Azure's fast PolyBase technology to load the data from blob to your SQL Data Warehouse instance.
Can I ask how much data you intend on loading into the DW? Azure Data Warehouse is intended for use with at least terabyte level data up to petabyte compute and storage. I only ask because each SharePoint list or Excel file has a maximum of 2GB per file.