Viewing 15 posts - 16 through 30 (of 142 total)
my table as below
create table #partsfeature
(
PartId int,
FeatureName varchar(300),
FeatureValue varchar(300),
PartFeatureNumber int
)
insert into #partsfeature(PartId,FeatureName,FeatureValue,PartFeatureNumber)
...
June 12, 2022 at 12:12 pm
for the Part 3900
I have feature name grail and feature value 51V it exist on table before insert and take technology id 2
so when insert same feature name with value...
June 12, 2022 at 11:38 am
I solved issue
DECLARE @MaxTechnologyID AS BIGINT =
( SELECT MAX(TechnologyId)
FROM #partsfeature
)
SELECT *,CAST (DENSE_RANK() OVER ( ORDER BY FeatureString)
+ @MaxTechnologyID AS BIGINT) AS NewTechnologyId
from #partsfeature
June 11, 2022 at 5:39 pm
how to write query detect numbers like IE only
i need to write query detect numbers like IE only
June 5, 2022 at 8:40 am
thank you for reply
this will solve issue of IE
but it will add extra 0 on right on another values
8 become
8.00000000000000000
1005 become
1005.00000000000000000
so how to handle it please
June 4, 2022 at 11:59 pm
Does the ChemicalHash table ONLY contain rows where the ChemicalID is NULL
yes
ChemicalHash table have chemical id is null and i will update it by chemical id
that exist on table fmdchemical
table...
May 19, 2022 at 8:59 am
thank you for interset
what ou need to understand i will answer you
May 18, 2022 at 9:03 pm
my issue is if i have file already exist
and this file have header
studentid,studentname
then after using query
it become studentid,Name
How to keep header on excel file already exist without change
to do that...
May 3, 2022 at 3:05 pm
thank you for reply
i need any one help me
i will explain issue
firstly i use script below to export data from sql server to excel
CREATE TABLE #FinalExportList(TableCount INT...
April 26, 2022 at 11:39 am
i updated my original post
Question is how to prevent header from change on excel if already exist
April 26, 2022 at 7:38 am
really very good support
thanks you
March 18, 2022 at 9:19 am
can you please give me function
dbo.fnTally
to check this query
March 16, 2022 at 3:27 pm
code below give me part from my expected result
because it give me gaps null between dates remaining to get dates until current month
so How to do that please ?
what i...
March 16, 2022 at 11:30 am
i make what you say above and remove index not needed
this is my estimated execution plan after remove indexes no needed
https://www.brentozar.com/pastetheplan/?id=HkBWmbWZ9
and this is actual execution plan after remove...
March 5, 2022 at 3:58 pm
can you may clear what you mean by
has caused a huge and terrible CROSS JOIN.
really this issue is very strange
March 2, 2022 at 9:05 pm
Viewing 15 posts - 16 through 30 (of 142 total)