Viewing 15 posts - 1 through 15 (of 86 total)
Thank you.I disabled the index and testing the performance,but i want to know whether any order or sequence to recreate the dropped indexes.
March 31, 2019 at 10:51 am
yes.i checked the actual execution plan,it is not showing the particular index in the plan and i am using the query in my stored procedure.Instead of dropping the index i...
March 17, 2019 at 4:38 am
As per the suggestion of previous post,now i am testing by removing the replace functions in the
TP.F_PRODUCT_NAME column(REPLACE(REPLACE(REPLACE(REPLACE(TP.F_PRODUCT_NAME, '™', '|TM'), '®', '|TS'), '©', '|CP'), '°', '|DEG'))in this procedure.I am...
February 17, 2019 at 9:37 am
The Product_Name column in the table contains lots of special characters like '®' ,'©',so i have to replace with TM,TS and CP characters.So now i am going to try with Computed columns...
February 12, 2019 at 9:31 am
1 yes the index on Product_Name wee a bit of problem in future if it exceeds the 900 bytes.But index was created for
Product_Name with warnings.whether sqlserver will use...
February 6, 2019 at 6:16 am
Thank you for the valuable suggestion.
February 3, 2019 at 5:39 am
Thank you.I will suggest this idea to my management.
February 3, 2019 at 4:40 am
Good Idea.U are telling backup and restore the data base from one server into target server and then execute the above command.i think it is easy and copy the records...
February 3, 2019 at 3:51 am
u have any sample program?
February 2, 2019 at 3:42 am
DECLARE @Product_Details...
January 30, 2019 at 4:27 am
ALTER DATABASE myDatabase SET COMPATIBILITY_LEVEL = 120;
Don't do this on the production...
January 30, 2019 at 4:11 am
Viewing 15 posts - 1 through 15 (of 86 total)