PowerPivot import data from SQL Server
In this tutorial we start creating PowerPivot model in Excel 2013 (very similar in 2010) by importing data from our...
2012-07-22
1,146 reads
In this tutorial we start creating PowerPivot model in Excel 2013 (very similar in 2010) by importing data from our...
2012-07-22
1,146 reads
We have created a simple tutorial for SQL Create Table that may help some of you to prepare for Microsoft...
2012-07-20
678 reads
We found another Blog directory that is willing to accept our RSS feed. And we have been asked to put...
2012-07-20
516 reads
Office 2013 Preview is not avialable. I'm particularly interested in Excel 2013 and new self-server BI features so I decided...
2012-07-19
781 reads
In this blog post we cover instructions on how to enable PowerPivot in Excel 2013 (you can follow them in...
2012-07-19
1,164 reads
In this blog post I will share steps I have taken to set up PowerView using Excel 2013. Hopefully tomorrow...
2012-07-19
985 reads
In this blog post I discuss Scrum (agile development methodology) and method to accurately estimate effort to complete sprint which...
2012-07-18
724 reads
Today I have decided to prepare myself for a meeting with a potential client (tomorrow) and write an article about...
2012-07-16
638 reads
18456 is probably one of the most common errors people come across and in this article we try to cover...
2012-07-13
800 reads
We decided to add blog post that covers only basic SQL Interview questions and answers. The blog currently provides only...
2012-07-07
1,072 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
Comments posted to this topic are about the item Databricks Genie Spaces for SQL...
Comments posted to this topic are about the item The Costs of Multiple Platforms
Comments posted to this topic are about the item RegEx Functions II
I have this data in a table in a SQL Server 2025 database:
EmailAddressID EmailAddress 7 dylan0@ADVENTURE-WORKS.COM 8 Diane1@ADVENTURE-WORKS.COMIf I run this query, which row(s) are returned?
SELECT top 10 * FROM person.EmailAddress WHERE REGEXP_LIKE(EmailAddress, '^d') AND BusinessEntityID IN (7,8)See possible answers