Viewing 15 posts - 61 through 75 (of 6,036 total)
It’s funny nobody suggested the most obvious choice in such situation - RIGHT JOIN:
Select s.Shipment_No
, p.pkg_no
, p.ord_no
From...
August 5, 2021 at 11:29 pm
You should use [inserted] table instead of dbo.[TorpedoVision Data 2021] inside of the trigger.
and don't send emails from triggers. Insert the data to be sent into a "queue" table and...
August 4, 2021 at 5:40 pm
Empty string (not NULL, empty string) of XML data type takes 9 bytes.
Single character XML occupies 13 bytes.
Every extra character takes extra 2 bytes.
August 3, 2021 at 6:02 am
Therefore, the clus index on the dbo.order_items should be ( order_id, $IDENTITY ) and not just ( $IDENTITY ). Since the parent key is sequential, this...
July 30, 2021 at 2:39 pm
Therefore, the clus index on the dbo.order_items should be ( order_id, $IDENTITY ) and not just ( $IDENTITY ). Since the parent key is sequential, this key will be...
July 29, 2021 at 12:34 am
OK then.
My recent experience with "flat-earthers" taught me that it's almost useless trying to prove anything to...
July 29, 2021 at 12:28 am
Unfortunately, that actually proves that they don't know. Bob Ward is still talking about the use of reorganize for...
July 28, 2021 at 2:43 pm
OK then.
My recent experience with "flat-earthers" taught me that it's almost useless trying to prove anything to true believers....
July 28, 2021 at 1:57 pm
OK then.
My recent experience with "flat-earthers" taught me that it's almost useless trying to prove anything to true believers. For them...
July 28, 2021 at 9:38 am
So, if you're after some increased efficiency and reduced overall load on SQL servers the last people you should be listening to are Microsoft employees.
That's a...
July 27, 2021 at 5:29 am
Don't forget: Microsoft is a Cloud Service provider. Quite a big one. With no plans of retreating.
Increased load on in-house servers makes the argument for a company to move to...
July 26, 2021 at 2:04 am
My internet died last night and I've had to come to the office because it's still not back!
Yeah, that's an issue with working from home - the reliability requirements...
July 24, 2021 at 7:07 am
https://docs.microsoft.com/en-us/dotnet/api/system.guid?view=net-5.0
Check ToString method, the option with Format in it.
you might find some formats not using dashes. The one with semicolons is quite popular.
July 22, 2021 at 2:24 am
Ni, it's not.
even the order of parts may be different depending which application converts that binary(16) to a character string with dashes.
July 22, 2021 at 1:56 am
I suggest creating the following indexes to support the query. If you'd like to adjust other indexes on the tables also, just let me know.
CREATE UNIQUE...
July 21, 2021 at 6:52 am
Viewing 15 posts - 61 through 75 (of 6,036 total)