Viewing 15 posts - 1 through 15 (of 55 total)
I'm not sure if you covered a star-schema or dimensional model design in your studies or not. It might be helpful to read up a bit on dimension and fact tables...
March 12, 2018 at 8:15 am
Thanks everyone for the feedback and constructive comments.
February 12, 2018 at 9:42 am
Hi Julian, I was trying to focus more on the basic principals of how sql statements are created dynamically.
But you make a very good point, I should probably have nudged...
February 12, 2018 at 2:42 am
From a dimensional modelling and data warehouse design aspect, I'd read up as much as possible about the Kimball methodology:
https://www.kimballgroup.com/
http://www.sqlservercentral.com/blogs/microsoft-business-intelligence-and-data-warehousing/2012/04/08/the-kimball-approach/
Tutorial for SSAS:
February 9, 2018 at 5:28 am
I think one of the closest end to end examples you're going to find is probably the AdventureWorks databases and cubes that can be downloaded from Microsoft.
A lot of...
February 9, 2018 at 5:17 am
I'm guessing this is what you are looking for:
WITH
Duplicates
AS
(
SELECT [Policy]
FROM Insurance
GROUP BY [Policy]
HAVING COUNT(ID) > 1
)
SELECT I.ID, I.[Policy]
January 21, 2018 at 7:38 am
It could have something to do with the default schema assigned to the user you are executing the code with.
January 21, 2018 at 6:46 am
Have a look at this article:
http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/163434/
You’ll have to modify the package a bit to execute the SQL files instead of importing the data but the principle of running the...
January 18, 2018 at 10:11 am
What do you mean exactly by "execution of all SQL"?
Do you have SQL script files (.sql) sitting in the folder?
January 18, 2018 at 9:32 am
SSRS continues to make use of web services:
https://docs.microsoft.com/en-us/sql/reporting-services/report-server-web-service/report-server-web-service
You'll just have to check if any of the method names have changed or deprecated in...
January 15, 2018 at 9:10 am
SSRS has many web service methods which can be used.
Have a look at these examples:
https://weblogs.asp.net/srkirkland/exporting-a-sql-server-reporting-services-2005-report-directly-to-pdf-or-excel
https://forums.asp.net/t/1549431.aspx?Code+to+render+the+report+in+PDF+format+using+C+in+SSRS+2008
There are loads more on the internet.
January 15, 2018 at 7:59 am
What is the purpose of writing the data from your new central database back to the individual Access databases?
If you are not interested in recording any history (changes...
January 15, 2018 at 5:55 am
Hi Huw
I think the first thing to take into consideration is, do you want to be able to store any of the changes to those customers?
ie. If I...
January 15, 2018 at 5:35 am
Are you referring to your dimTablename or fctTablename (dimensional model) designed tables as staging?
I have always considered the "Extract" tables as part of the staging layer. Yes transformations can...
January 11, 2018 at 5:10 am
Check out this link: https://ole.michelsen.dk/blog/split-string-to-table-using-transact-sql.html
January 11, 2018 at 3:53 am
Viewing 15 posts - 1 through 15 (of 55 total)