Viewing 15 posts - 46 through 60 (of 86 total)
i tried to create index for that column(f_product) but it is showing following error message.
Cannot create index on view dbo.V_PROD_ALIAS_MANU' because it contains one or more UNION, INTERSECT,...
December 3, 2018 at 5:17 am
This is the view query.It contains union all operator so not able to create index for this view.Is there any way to optimize this query?
CREATE VIEW...
December 2, 2018 at 11:28 pm
I used below query to get the output.it is coming but i want to replace ROLEID in the query output.
select UR1.ApplicationID ,(select UR2.RoleID from UserRoles...
October 27, 2018 at 12:53 am
STRING_AGG function is not working in my SQL SERVER version(Microsoft SQL Server 2016 (SP1) (KB3182545)).Any other method to get the output?
October 26, 2018 at 11:47 pm
CREATE TABLE USERROLES(ApplicationID int,Roleid INT)
Insert into userroles values(1,1);
insert into userroles values(1,5)
insert into userroles values(3,5)
October 26, 2018 at 7:07 am
October 4, 2018 at 6:28 am
October 4, 2018 at 6:25 am
Thank you.How to attach file?.I want to attach execution plan
October 4, 2018 at 4:05 am
if i use the same order of clustered index,i think it will improve.if i skip the first column,it decrease the performance.i have to use the existing index only,I cannot create...
September 26, 2018 at 6:12 am
No.I am not tested I am checking in db side now and i will test and tell u.
September 26, 2018 at 5:51 am
i made some changes in the query.actually i created clustered index for three columns for example
(column1,column2,column3) but i not used column1 in my where condition i used column2 and...
September 26, 2018 at 4:50 am
September 24, 2018 at 4:16 am
September 23, 2018 at 11:21 pm
Viewing 15 posts - 46 through 60 (of 86 total)