Viewing 15 posts - 76 through 90 (of 179 total)
I was looking at this just yesterday feeling somewhat unwell going away from looking at it during my lunchbreak knowing i did only understand some of it. This throughout and...
October 14, 2020 at 5:11 am
That is something that is really bothering me.
There seems so be so much useful metadata stored and available in SQL Server, but i dont even know where to start or...
September 30, 2020 at 5:45 am
Not a solution since am at work, but for the future, if you have TSQL Questions, rather than what u did, its much more helpful and easier for you and...
September 17, 2020 at 9:15 am
Maybe the environment variables in the job?
August 27, 2020 at 9:19 am
For those are too lazy to copy paste for testing, added 2nd Colum for True False:
create table #temp (
Date1 datetime2
,Wanted bit)
insert into #temp
values (cast('2020-08-26...
August 26, 2020 at 12:58 pm
I never got into reading no-technical books.
I am now 27 and i havent read a single non-technical book outside of those i had to read for schools.
On the other hand...
August 19, 2020 at 6:27 am
Most likely DMV (Dynamic Managent Views) is what you are looking for.
By creating a linked server to SSAS you can query SSAS Metadata via SQL
August 19, 2020 at 6:14 am
Comments posted to this topic are about the item Transact-SQL: The Building Blocks to SQL Server Programming by Gregory A. Larsen
I might be wrong but is there a...
August 13, 2020 at 9:45 am
I only recently started working with python in my freetime but as someone who only used SQL/TSQL i am struggling quiet a bit to get used to working with data...
August 12, 2020 at 12:17 pm
Always feels weird to guess about stuff you never heard about, because to get the answer you have to submit one.
But something learned is something learned.
July 23, 2020 at 12:47 pm
OK, are these date ranges included in your cube? If so, why are you doing that, rather than allowing the end user to perform the aggregation in a pivot...
July 23, 2020 at 4:08 am
How is DiscountMeasure calculated?
Its not calculated its just a number and the 2 date ranges (+ other dimension references)
July 22, 2020 at 4:07 am
Kinda offtopic, but since i am getting into python and therefore numpy,scipy and pandas.
It might be because i am just starting, but what are these basic features like pandas for...
July 15, 2020 at 6:45 am
Join the tables, group the result, pivot the result
create table #employee (
employeeNo nvarchar(20),
lastName nvarchar(20),
firstName nvarchar(20),
gender nvarchar(20),
departmentID nvarchar(20))
create table #department (
departmentID nvarchar(20),
"name" nvarchar(20))
insert into #employee(employeeNo,firstName,lastName,gender,departmentID)
values('1','Tom','Smith','M','2')
...
June 25, 2020 at 12:37 pm
Viewing 15 posts - 76 through 90 (of 179 total)