Viewing 15 posts - 16 through 30 (of 86 total)
i checked my version.Please find the details.
select @@version
Microsoft SQL Server 2014 (SP1-CU13) (KB4019099) - 12.0.4522.0 (X64) Jun 28 2017 17:36:31 Copyright (c) Microsoft Corporation Standard Edition...
January 30, 2019 at 1:29 am
Thank you.Working fine.
January 29, 2019 at 5:20 am
SELECT V1.F_PRODUCT,
F_TEXT_CODES = STUFF((SELECT DISTINCT TOP (1000000)',' + V2.F_TEXT_CODE FROM first_view V2 WHERE V1.F_PRODUCT = V2.F_PRODUCT ORDER BY V2.COUNTER1 FOR XML PATH('')),1,1,''),
F_PHRASES = STUFF((SELECT...
January 29, 2019 at 3:43 am
I tired the ORDER BY before FOR XML but it is showing error message.
January 28, 2019 at 9:38 am
CREATE TABLE [dbo].[ProductCodes](INSERT...
January 28, 2019 at 8:12 am
it is showing error message varchar is not recognized built-in function name.
January 25, 2019 at 6:12 am
DDL COMMANDSCREATE TABLE [dbo].[PRODUCT_TEXT]
(
[Product] [nvarchar](50) NOT NULL,
[Format] [nvarchar](3) NOT NULL,
[Text_Code] [nvarchar](8) NOT NULL,
[F_Date_Stamp] [datetime]...
January 25, 2019 at 6:04 am
Not able to understand your question.please explain.
January 24, 2019 at 7:12 pm
It is working fine.But it is also required two queries.Instead of ProductCodes table i am using the view(v1) and using your query i am taking records from that view(V1).so the query...
January 24, 2019 at 10:01 am
i am using sql server 2014 so it is showing 'STRING_AGG' is not a recognized built-in function name.
Any other method or way to achieve this?
January 24, 2019 at 1:12 am
view will be faster then table?.Please suggest.so that i can avoid second table.
January 20, 2019 at 9:56 am
The main table T_pdf contains millions of records,so we created another one table and moved some required records into another table(T_WV_RESULT).View will be faster then table? because view does not...
January 20, 2019 at 3:46 am
January 17, 2019 at 9:18 am
January 17, 2019 at 8:57 am
Viewing 15 posts - 16 through 30 (of 86 total)