Viewing 15 posts - 46 through 60 (of 118 total)
one for tabular getting fast popularity is ease of use, i.e. no need to process cube, you can start designing reports using the dimensional model.
Also DAX is built based on...
June 30, 2016 at 12:14 pm
I hope you can use tally/number table to load the data into TableA from TableB.
CREATE TABLE #tblNums(n INT PRIMARY KEY)
DECLARE @cnt =1;
WHILE (@cnt <=100)
BEGIN
INSERT INTO #tblNums(n)
VALUES(@cnt)
SET @cnt = @cnt+1
END
;with...
June 30, 2016 at 11:34 am
Its interesting to learn that SSIS can process Word docs.
Thanks for the info.
June 30, 2016 at 10:53 am
For more info, refer to this URL.
http://stackoverflow.com/questions/24612375/ssis-export-all-data-from-one-table-into-multiple-files
June 29, 2016 at 4:33 am
I think you are using SQL Server as source database.
Use below approach to solve this:
SELECT
st.*
, (ROW_NUMBER() OVER (ORDER BY (SELECT NULL))) % 2...
June 29, 2016 at 4:28 am
Thanks for the response.
The recommended article is too good to miss.
June 29, 2016 at 1:16 am
You are missing the point.
Its not about connecting from SSMS but connecting using RDP(Remote Desktop); You can access this using MSTSC command in RUN in windows.
June 29, 2016 at 12:22 am
Hope the following link helps you to understand how to track the memory utilization of a running package.
June 28, 2016 at 11:33 pm
Yet another good alternative to learn but little complex compared to pivot solution.
June 28, 2016 at 12:59 pm
Thanks for correcting me, infact its a type from me instead of SQL 2005 I wrote SQL 2008.
June 28, 2016 at 11:32 am
Exactly what I am thinking i.e. instead of using convert() its more accurate to use CAST() most of the times.
June 28, 2016 at 8:23 am
CONVERT(DATE,GETDATE()-180) may not work for the OP if he uses SQL Server 2008 or earlier.
June 28, 2016 at 8:01 am
Viewing 15 posts - 46 through 60 (of 118 total)