Viewing 15 posts - 2,146 through 2,160 (of 13,838 total)
Can you clarify the problem a little, please? Is it
a) Files are not processed in the correct order, or
b) Multiple files are processed at the same time (because multiple instances...
February 23, 2021 at 10:18 am
All of our solutions come crashing down if the start and end times span midnight, of course.
February 22, 2021 at 6:11 pm
To import xlsx files (in both 2015 and 2017), you need to install the ACE drivers. Ideally, you should install both the 32- and 64-bit versions. This link will...
February 22, 2021 at 5:32 pm
My version looks similar to the above!
DROP TABLE IF EXISTS #Time;
CREATE TABLE #Time (StartTime INT, EndTime INT);
INSERT #Time (StartTime, EndTime)
VALUES
(830, 1100)
,(1200, 1600)
,(0, 2359);
SELECT
calcs.StartTime
,...
February 22, 2021 at 3:21 pm
403 is an HTTP error. Perhaps HTTPS is now being enforced?
February 22, 2021 at 2:59 pm
Your solution sounds more complicated than it needs to be, but well done on working out something usable.
May I suggest that in future you do as I suggested and provide...
February 22, 2021 at 11:01 am
It helps people if you format your code as a code sample. Here is your code again:
--V1:
WITH cte_filterdates
AS
(SELECT TOP 1
...
February 21, 2021 at 11:28 am
2. If you are hoping for coding assistance, please provide sample DDL, along with...
February 21, 2021 at 11:03 am
This syntax works ... not sure whether it gets you where you want to be.
DECLARE @TheDetails VARCHAR(MAX);
SET @TheDetails = 'The Following Items Have Changed: ';
IF 1 <>...
February 19, 2021 at 5:59 pm
I don't know the answer, but if I were you, I would focus my initial attention on understanding this particular part of the error message:
The remote server returned an error: (412)...
February 19, 2021 at 11:42 am
One thing I can think of is to set up an alert which detects 'long running jobs'. There are many ways of doing this, but one is to have another...
February 18, 2021 at 2:33 pm
One additional thought.
You can future-proof the separate database idea to a large extent by using database schemas which are different from those in your existing database.
If you do this and...
February 16, 2021 at 2:29 pm
OK, that's a good reason, thank you.
To be honest, I can see only a few pros of putting the new tables and structures into the same database as your current...
February 16, 2021 at 2:24 pm
... creating new database and porting it's table structures ...
Why would you even consider this, when you have BACKUP/RESTORE as the obvious alternative?
February 16, 2021 at 1:54 pm
Does this 'system' already have its own database? What is the reason for this migration and why are you considering throwing away the existing database?
As the data in the 'system'...
February 16, 2021 at 1:13 pm
Viewing 15 posts - 2,146 through 2,160 (of 13,838 total)