Viewing 15 posts - 1 through 15 (of 36 total)
I think it is not possible to get that window again.
January 30, 2019 at 11:53 am
January 7, 2019 at 10:17 pm
I don't know who you are but I still removed the post !
You cannot claim that you are the one who really framed the question !! Where...
January 7, 2019 at 1:03 pm
I agree with you Jeff. I wish I could do that. Lol....
February 18, 2018 at 1:11 am
Thanks Jeff for the idea. I actually implemented the same idea you said. I penned down all the stuff in the papers. I got the same idea so now I...
February 17, 2018 at 2:26 pm
The Execute DDL tasks fails and I get the error message like this:
[Analysis Services Execute DDL Task] Error: The System.__ComObject text node at line 7, column 34 cannot appear...
July 11, 2014 at 12:53 am
For Example.
Refer the figure.
Considering First Hierarchy tree:
[Dim Marketing Product].[Product Version].[Product Version] as "France Term Life + Assistance"
[Dim Marketing Campaign].[Campaigns].[Campaign Country] as "France"
[Dim Marketing Campaign].[Campaign Market].[Campaign Market]...
July 19, 2013 at 6:05 am
Thanks Dwain. I will try your idea too... but for the need of the hour -- resolved it with while loop...
DECLARE @RESULT TABLE
(
ID INT IDENTITY(1,1),
ACT_TYPE varchar(100),
LIST varchar(8000),
START_DAT datetime,
ACT_UP_DAT datetime,
ACT_AUTO int
)
INSERT...
March 13, 2012 at 8:09 am
Thanks Gila. Done that all ready ....
March 12, 2012 at 8:21 am
Thanks, but the error was different - It had multiple GO and removed the GO commands. Its working now........
March 12, 2012 at 7:10 am
Hi Lutz,
I had used the Split function that you referred in the signature...
Here is that code, I am using...
CREATE FUNCTION [dbo].[DelimitedSplit8K]
--===== Define I/O parameters
...
March 11, 2012 at 5:14 am
Hi Lutz
DECLARE @tbl TABLE
(
id INT IDENTITY(1,1),
list VARCHAR (200)
)
INSERT INTO @tbl
SELECT '47,48,49,92,93,94,95,96,108,107' UNION ALL
SELECT '37,27';
WITH cte AS
(
SELECT id, item
FROM @tbl
CROSS APPLY
(
SELECT...
March 11, 2012 at 4:50 am
Please find the core I executed...
DECLARE @tbl TABLE
(
id INT IDENTITY(1,1),
list VARCHAR (200)
)
INSERT INTO @tbl
SELECT '47,48,49,92,93,94,95,96,108,107' UNION ALL
SELECT '37,27';
WITH cte AS
(
SELECT id, list
FROM ...
March 11, 2012 at 4:31 am
Viewing 15 posts - 1 through 15 (of 36 total)