Viewing 10 posts - 1 through 10 (of 10 total)
This is not a lost idea in the "Power BI Ideas" forum. We are trying, vote here!
https://ideas.powerbi.com/forums/265200-power-bi-ideas/suggestions/9677517-source-control
June 24, 2019 at 1:26 pm
Up Vote this idea!
Everything about stackexchange/stackoverflow!
October 11, 2016 at 7:44 am
To Lee's point, use the following CTE that filters on the current database_id so that you aren't counting hits from object_ids from other databases:
select ISNULL(deps.database_id,-1) database_id,p.object_id,p.name
,ISNULL(deps.type,'P') type,ISNULL(deps.type_desc,'SQL_STORED_PROCEDURE') type_desc
,ISNULL(deps.last_execution_time,'1900-01-01') last_execution_time,ISNULL(deps.execution_count,-1) execution_count
,p.create_date,p.modify_date...
September 1, 2016 at 7:13 am
Thanks. a Quick google pointed me here:
https://azure.microsoft.com/en-us/documentation/articles/app-service-web-app-azure-portal/
"The new portal makes it easy to build applications end-to-end with components from multiple services. The new Azure Portal is organized as...
November 3, 2015 at 8:04 am
In your article you use the term "Blade" to describe what looks to be features, plugins or modules of the portal. Why use the term "Blade", can you define it...
November 3, 2015 at 7:13 am
That was it ! ";"
I was getting an error:
Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking...
December 14, 2012 at 9:40 am
I've used INSERT INTO...SELECT many times but as "SSCoach" answered above on Nov 22 the query solution to my problem is complex. This is the SQL Query I need to...
December 14, 2012 at 9:12 am
BaseTable is not what needs to be inserted... The query joins BaseTable to JoinTable, it's the result of this query that needs to be inserted.
December 14, 2012 at 8:46 am
One more question, new dataset - similar problem... it is possible to extend this solution and now INSERT this query into another table?
Take the query (simplifed):
With BaseTable AS (Select A,...
December 14, 2012 at 7:58 am
Viewing 10 posts - 1 through 10 (of 10 total)