Viewing 15 posts - 1 through 15 (of 347 total)
Hi,
Thanks for getting back. There is no connection between [Owner],[PersonAttending],[Type] columns.
July 11, 2021 at 10:48 pm
For ID 711 the output is not correct. Atta
CREATE TABLE #SplitColumnsToRows
(
ID INT,
Title nvarchar(1000),
[Owner] nvarchar(1000),
[PersonAttending] nvarchar(1000),
[Type] nvarchar(500)
)
Insert INTO #SplitColumnsToRows ( ID,Title,[Owner],[PersonAttending],[Type])
SELECT 711,'Training requirements','','Weiying Song;Muhammad Ismail Aftab;Saravana Kumar Rao;Rasha...
July 11, 2021 at 6:22 pm
Thanks a lot. Works perfectly 🙂
February 25, 2021 at 7:41 pm
Works like a charm.
Is there a way to sort the GM Scope and BL Scope columns in alphabetical order ?
-- Desired results
SELECT 'Q4-20'AS [Quarters],'FIN' AS [Function],'AC' AS...
February 25, 2021 at 7:20 pm
Instead of two rows it creates 4 records for 'Dual Task' , Not sure how to accomplish this
Create TABLE #TableA
(
TaskNameA nvarchar(100),
GovernA bit,
ToolTypeA nvarchar(10),
ResourceNameA...
January 25, 2021 at 1:28 am
Works like a charm. Thank you!
August 27, 2020 at 2:00 pm
Yes, that's correct . Thanks.
August 26, 2020 at 5:43 pm
Yes, requirement has changed . There will be no more hyphen after [] .
August 26, 2020 at 5:36 pm
Here is the code snippet
CREATE TABLE #RemoveText ( ID INT,TextName NVARCHAR(100))
INSERT INTO #RemoveText (ID,TextName)
SELECT '1','[Accounts Name] Transactional Process sessions' UNION
...
August 26, 2020 at 4:50 pm
Thanks for the solution. It works. How do I change this code for the hyphen part ?
The square bracket will not be followed by hyphen . It could have a...
August 26, 2020 at 4:48 pm
Thanks. Works as expected.
August 26, 2020 at 4:32 pm
Hi,
Thanks for the solution. It works as expected. Just noticed the main table has an extra space at the beginning of each 1st value. How do I change the query...
August 25, 2020 at 11:40 am
Here are some snippets from the log file :
extensionfactory!ReportServer_0-3!204!08/19/2020-09:58:48:: e ERROR: Exception caught instantiating ORACLE report server extension: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --->...
August 19, 2020 at 3:03 pm
I have Enterprise Edition . My question is how to set the Delivery Option Email and Report parameter value .
August 10, 2020 at 8:38 pm
Viewing 15 posts - 1 through 15 (of 347 total)