Viewing 15 posts - 1,531 through 1,545 (of 13,838 total)
So do you want two queries? One showing the situation before mess-up (which is the one already provided) and one showing the mess-up? That is, two separate resultsets?
March 2, 2022 at 4:14 pm
Phil, I am sorry, I spoke too quickly.
I see that you DECLARE a fixed time DECLARE @MessedUpAt DATETIME = '2000-01-03 15:00:00';
But the mechanic can mess up for 2 hours.......
March 2, 2022 at 3:36 pm
Thanks Phil, you did it! Please do you mind, explain high level how this works? You probably see that I do not have your level and I am interested...
March 2, 2022 at 3:32 pm
Please check this out and let me know what you think. I used a temp table and converted your VARCHAR(1) to CHAR(1). If you want to know why VARCHAR(1) is...
March 2, 2022 at 1:54 pm
I need a bit of clarification.
Presumably the inputs to this query would be
a) Mechanic (Mike, in your example), and
b) MessedUpAt (2000-01-03 at 15:00:00, in your example)
Is this correct?
Based on these...
March 2, 2022 at 1:23 pm
Any one got any ideas why the discussion post for today's article, Can We Please Stop Sending Passwords Over the Wire?, has been marked as "spam"?
Someone got...
March 2, 2022 at 10:09 am
Solved with a CTE.
With AcctTrav as (Select * from Accounts where Jdx = 180)
Merge into AcctTrav a
Using TTN5563 t
On t.TaxID = a.TaxID
Nice. Well done on posting...
March 1, 2022 at 9:51 am
I seem to recall a rule in place that if 3 posts for the same user are flagged as spam, the user automatically gets disabled. Is that rule still...
March 1, 2022 at 9:46 am
I've been called many things, but it's a first for Ohil 🙂
February 28, 2022 at 4:24 pm
The people that make spam aren't stupid, the spam constantly evolves as they find new ways to avoid in built spam detection on websites; no doubt this is just...
February 28, 2022 at 3:56 pm
I fragged a load of them earlier. We've been down this road several times before, with many suggestions which sounded like great ideas, though none seem to have ever been...
February 28, 2022 at 3:14 pm
Like this? (With thanks to Jeff Moden for the dates generator.)
DROP TABLE IF EXISTS #t1;
CREATE TABLE #t1
(
PersonId INT NOT NULL
,StartDate...
February 28, 2022 at 3:09 pm
To convert NVARCHAR to decimal, use something like this:
SELECT Cost = CAST(t1.Cost as Decimal(19,6))
Use AVG() to calculate averages.
For more-specific help, please post the sample data in consumable format, along with...
February 28, 2022 at 12:52 pm
SSIS can do it.
Create a dataflow with
Source 1: SQL Server
Source 2: Excel
Destination: Excel
Inside your (source --> destination) dataflow, perform the merge, probably using a MERGE JOIN component.
February 28, 2022 at 11:06 am
Oauth is an authentication protocol and is not relevant for having SSIS talk to SharePoint (SP).
--
Greeting,
Rachel Gomez
SharePoint is not mentioned anywhere else in this thread, so why mention it...
February 28, 2022 at 10:08 am
Viewing 15 posts - 1,531 through 1,545 (of 13,838 total)