Viewing 15 posts - 1 through 15 (of 122 total)
got it thanks for the clarification . I should have observed i am sorting based on year and month.
thanks hguys
March 22, 2023 at 12:44 pm
Have solved the issue made some security settings in SSMS. It worked. Thanks for your help
October 29, 2022 at 8:50 am
Thanks for the inputs I have resolved the deployment issue. Now I am faced with another issue when I process the Cube getting this error message
OLE DB error: OLE DB...
October 28, 2022 at 5:14 pm
Got it resolved
ISNULL( MiddleName )? FirstName + " " + LastName :FirstName + " " + MiddleName + " " + LastNameISNULL( MiddleName )? FirstName + " " + LastName...
May 9, 2022 at 7:20 am
Awesome. It worked. Thank you Fonseca. appreciate that
October 31, 2021 at 6:16 pm
Can this be achieved without using ranking function
June 29, 2021 at 11:20 am
Correct how can I pass multiple values and get results
March 18, 2015 at 8:29 am
I figured the problem. Now I have another problem that I need to figure
DECLARE@MGR_NAMENVARCHAR(100)='Okray, Lupe'
SELECT*FROM#QLOGIC
WHERECOUNTRYIN('US')ANDSEGMENTIN('HCLS')
AND[TSR_MGR_NAME]IN(@MGR_NAME)OR[EI_TSR_MGR_NAME]IN(@MGR_NAME)
It pulls all the rows related 'Okray, Lupe' ideally...
December 5, 2014 at 7:27 am
Please script as below
CREATE TABLE #QLOGIC
(
[ACCT_ID] NVARCHAR(255),
[COUNTRY] NVARCHAR(255),
[SEGMENT] VARCHAR(255),
[TSR_REP_NAME] NVARCHAR(100),
[TSR_REP_BADGE_NUM] NVARCHAR(255),
[TSR_MGR_NAME] NVARCHAR(100),
[TSR_MGR_BADGE_NUM] NVARCHAR(255),
[EI_TSR_REP_NAME] NVARCHAR(100),
[EI_TSR_REP_BADGE_NUM] NVARCHAR(255),
[EI_TSR_MGR_NAME] NVARCHAR(100),
[EI_TSR_MGR_BADGE_NUM] NVARCHAR(255)
)
INSERT INTO #QLOGIC
VALUES('727386973','US','US LI CORP CHANNELS','Jennings, Phillip','606600','Betts, Brian','21589','Soto, Andrea A','589171','Okray, Lupe','598284')
INSERT INTO #QLOGIC
VALUES('725395506','US','HCLS','Dallmeier,...
December 5, 2014 at 2:58 am
help request ideally rep_name data set should return only three records. It is pulling 5 records. It is pulling 3 records as tsr_rep_name and records as
ei_tsr_rep_name and in the rep_name...
December 4, 2014 at 7:34 am
LEFT(CAST(ROUND([Val],0,0) as nvarchar(10)),2) + '%' AS [val]
to get the results some like this
34.100 34.000 ->34%
39.800 40.000 ->40%
35.400 35.000 ->35%
But this does not holds good...
September 19, 2014 at 4:46 am
thanks for the reply.
Can make it as below
34.000->34%
40.000->40%
35.000->35%
September 16, 2014 at 5:56 am
guys I searched in Teradata forums I did not get any concrete answers. Any sql pundits can tell me how it can be done
September 3, 2014 at 5:41 am
need to check Report execution status in the executionlog3 table to nail it to the core.
May 26, 2014 at 4:17 am
Viewing 15 posts - 1 through 15 (of 122 total)