Viewing 15 posts - 2,041 through 2,055 (of 4,820 total)
There are a couple of things that aren't clear:
1.) Are time spans ever overlapping?
2.) Are you seeking only data where an ID has an "urgent" status?
3.)...
October 11, 2017 at 6:18 am

October 11, 2017 at 6:08 am
Here's what I used to try and get the data:CREATE TABLE #tblOrders (
OrderID int NOT NULL PRIMARY KEY,
JobStatus nvarchar(50) NOT NULL,
JobType nvarchar(50) NOT NULL,
BidDate datetime...
October 10, 2017 at 11:18 am
October 10, 2017 at 11:16 am
Looks like this is what's needed, but the original poster will have to validate and supply his or her own start and end date parameters:CREATE TABLE #tblOrders (
OrderID...
October 10, 2017 at 10:54 am
You would have to assume that both database engines use the exact same encryption AND decryption algorithms, and yes, you should go ahead and test it pretty thoroughly. Last thing...
October 10, 2017 at 10:25 am
SELECT Name, public_key
FROM sys.asymmetric_keys;
Do you think this...
October 10, 2017 at 10:12 am
You can also try the following, which will use a parameter for the starting date and just use the run date as the last possible date, so you could choose...
October 10, 2017 at 9:21 am
October 10, 2017 at 7:59 am
I usually try to help people, but when the situation as described just doesn't make any sense, and the organization is an airline that ought to know better from an...
October 10, 2017 at 7:46 am
October 9, 2017 at 2:27 pm
October 9, 2017 at 2:26 pm
October 9, 2017 at 2:25 pm
October 9, 2017 at 2:25 pm
October 9, 2017 at 2:24 pm
Viewing 15 posts - 2,041 through 2,055 (of 4,820 total)