Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi all,
Hope you guys are alright. I have a question about the DirectQuery method since my database is to big to import.
Now we are using a sql statement, by using the sql report editor to show some facts about last weeks employees.
My question is,
Can i use following query directly in DirectQuery to import the right data and how does it work?
SET DATEFIRST 1 ;
WITH temp ( Account , DayOfWeek , Duration , TickID , WeekNumber , Year) AS
(
SELECT [User]
,DatePart(dw,[CreatedDateTime])
,[Minutes]
,[TicketNumber]
,DatePart("ww",[CreatedDateTime]) AS WeekNumber
,DatePart("yyyy",[CreatedDateTime]) AS Year
FROM [ksubscribers].[kasadmin].[vSDTicketNotes]
),
temp1 (Account_Closed , WKNr_Closed , Y_Closed , Amount_Closed) AS
(
SELECT [Assignee]
,DatePart("ww",[Closed]) AS WeekNumber
,DatePart("yyyy",[Closed]) AS Year
,Count(*)
FROM [ksubscribers].[kasadmin].[vSDTicket]
GROUP BY [Assignee] , DatePart("ww",[Closed]) , DatePart("yyyy",[Closed])
)
Select Account , DayOfWeek , SUM(Duration) AS Duration , TickID , COUNT(*) AS Amount , WeekNumber , Year , temp1.Amount_Closed from temp
INNER JOIN temp1 ON temp1.WKNr_Closed = WeekNumber and temp1.Y_Closed = Year and temp1.Account_Closed = Account
WHERE Duration > 0 and Account Like 'itsn%' and TickID like 'CH%' and Year = 2017
GROUP BY Account , WeekNumber , Year , DayOfWeek , TickID , temp1.Amount_Closed
Do you have any ideas?
Solved! Go to Solution.
@miltenburger wrote:
Maybe to make it more clear for you guys.
What i actually want is:
Get data from my Kaseya database (SQL), but i don't want all the tables with all the rows,
i only want data from last 7 days from several tables (This is what the query above does)
I don't have Kaseya DB at hand, per my knowledge on SQL Server, in Power BI, when using DirectQuery mode, the leading SET statement and CTE expressions are not supported, you'll have remove the SET statement and replace CTEs with derived tables.
Maybe to make it more clear for you guys.
What i actually want is:
Get data from my Kaseya database (SQL), but i don't want all the tables with all the rows,
i only want data from last 7 days from several tables (This is what the query above does)
@miltenburger wrote:
Maybe to make it more clear for you guys.
What i actually want is:
Get data from my Kaseya database (SQL), but i don't want all the tables with all the rows,
i only want data from last 7 days from several tables (This is what the query above does)
I don't have Kaseya DB at hand, per my knowledge on SQL Server, in Power BI, when using DirectQuery mode, the leading SET statement and CTE expressions are not supported, you'll have remove the SET statement and replace CTEs with derived tables.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |