Viewing 15 posts - 1,351 through 1,365 (of 2,905 total)
Service Broker (not sure it works in express but I expect so) would be another option and would be near real time, but may also be overkill. Linked server and...
March 3, 2021 at 2:38 pm
I would do something like
SELECT appt_time + duration as end_time
BUT that assumes that the datatypes on those 2 columns can be added together. For example, if they...
March 3, 2021 at 2:03 pm
I would start by comparing the data in the two systems. Pick a table and compare the values between the two. It COULD be that the user expected data, but...
March 2, 2021 at 10:02 pm
If you NEED to do this in SSIS, I think you are going to need a for each loop (or similar).
If you can do this on the TSQL side before...
March 2, 2021 at 9:32 pm
I agree with ScottPletcher here that there is little value in that sort of assessment and there is a LOT of things that can impact it. If your table has...
March 2, 2021 at 9:19 pm
Was just reviewing the execution plan, and my thoughts are (experts feel free to tell me I'm wrong here):
1 - the "SELECT(COUNT()...)" statements are checking if the result is less...
March 2, 2021 at 4:46 pm
Kristen,
In your scenario, I am not sure service broker is the route I would go either. The biggest part that would make me use a different solution is that there...
March 2, 2021 at 1:58 pm
Hello Kristen. To address your concerns, messages very rarely fail to send. For a message to fail sending, pretty much the only cases I can think of are that the...
March 1, 2021 at 7:49 pm
One way would be to use a test environment (so you don't break any production data) and run all of the stored procedures and see which ones give a data...
February 26, 2021 at 4:15 pm
Happy to help. I am just glad you were on 2017 or newer as otherwise that STRING_AGG function wouldn't have worked and we'd have needed to get more creative.
February 25, 2021 at 8:04 pm
Sorry about that. Did not realize the order was important.
But that is just as easy to handle:
SELECT [Quarters]
, [Function]
, [Product]
, [Manager]
, string_agg(GM ,';...
February 25, 2021 at 7:37 pm
This is pretty easy to do actually since you are on 2017!
Check this out:
SELECT [Quarters]
, [Function]
, [Product]
, [Manager]
, STRING_AGG([GM] ,'; ') AS [GM...
February 25, 2021 at 7:03 pm
I personally don't see it being a problem having 1000's of messages being sent at once. I would still send them on a single conversation. The advantage to that is...
February 25, 2021 at 4:39 pm
As a thought, what about if you switched C1 to be an IDENTITY value or a SEQUENCE or a calculated column and not insert it via a stored procedure but...
February 24, 2021 at 10:00 pm
My opinion, this is a good use of service broker. We have a VERY similar thing happening on our systems, but it is a 2-way thing with service broker. Server...
February 24, 2021 at 9:13 pm
Viewing 15 posts - 1,351 through 1,365 (of 2,905 total)