Viewing 15 posts - 1 through 15 (of 30 total)
I deleted the user and created a new one and now it works. I did read some post about user mapping issuse and that may have been the problem.
Thanks
December 21, 2023 at 7:37 pm
I show
openssl ciphers -v | awk '{print $2}' | sort | uniq
SSLv3
TLSv1
TLSv1.2
TLSv1.3
December 20, 2023 at 6:19 pm
Thanks
November 3, 2022 at 3:01 pm
Perfect, It works great Thanks
August 24, 2021 at 5:15 pm
That works like a dream...Thank You
SELECT date = CONVERT( varchar, omprequestedshipdate,...
April 9, 2021 at 6:47 pm
Correct no day shift data wanted the hard coded date I am using to get if you will today's information I don't want to have to change the date manually.
December 29, 2020 at 8:01 pm
SELECT
ISNULL(Transactions.item, Snumbers.item) AS item
,count(serial) AS qty
,tuser
,sum(ISNULL(M1_KF.dbo.PartUnitSalePrices.imhUnitSalePrice,0)) as TotalPrice
FROM Orbedata.dbo.SNumbers
LEFT OUTER JOIN OrbeData.dbo.Transactions ON snum = serial
left JOIN M1_KF.dbo.PartUnitSalePrices ON Orbedata.dbo.transactions.item = M1_KF.dbo.PartUnitSalePrices.imhPartID
WHERE tdate >= '12-28-2020 17:00' and tdate <= DATEADD(HH,...
December 29, 2020 at 7:18 pm
The query will be run each day and what was produced each day for the entire week would show for example day one we built 400 of part a1 and...
December 29, 2020 at 5:19 pm
I am not following I need to include for 12 hours 5pm to 5am the next day and then not include data from 5am till 5pm the same day so...
December 29, 2020 at 4:11 pm
I could do it with subqueries.
SELECT Datepart(wk, ompcreateddate + 84) ...
August 14, 2020 at 5:12 pm
I understand your comments on 1 thru 4 and will update that before I move it over.
number 5 > just add 84 days to the date the order was created...
August 14, 2020 at 4:25 pm
Drew that works very well. Thanks You
March 21, 2019 at 3:28 pm
SELECT pt.impPartGroupID
,sl.omlPartID
,sum(sl.omlExtendedPriceBase) AS Total
,sum(sl.omlOrderQuantity) AS qty
,sum(sl.omlOrderQuantity) /...
March 21, 2019 at 2:24 pm
[Brackets] worked Thanks
July 25, 2016 at 8:29 am
I tried this but it did not work. the column does change to x2013 but the data rows for that column become 2013 etc
select
week_,2013 as x2013,2014 as x2014,...
July 25, 2016 at 8:17 am
Viewing 15 posts - 1 through 15 (of 30 total)