Viewing 15 posts - 2,551 through 2,565 (of 7,614 total)
I prefer using CROSS APPLY to assign alias names. CAs can also cascade, where one alias can be used to create another alias(es). That's very helpful sometimes.
select BSEG_ID,SP_ID,FINAL_REG_QTY,START_REG_READING, END_REG_READING,
ActualRead
from CI_BSEG_READ
cross...
January 8, 2020 at 2:39 pm
.1. The PK itself.
.2. No.
.3. The clustering key column(s) are stored in higher-level index entries. The deeper the index depth, the more space the upper levels of the index take.
January 7, 2020 at 8:21 pm
jcelko212 32090 wrote:>> I don't think I was particularly snarky.
THAT, good Sir, is the crux of the problem. 😉
I don't think his first post was particularly snarky, esp. for him,...
January 7, 2020 at 7:41 pm
My next correction is a little more controversial. The reason that debits and credits exist has to do with the fact that when modern bookkeeping began in the Renaissance,...
January 7, 2020 at 5:48 pm
I left one out, the sample INNER JOIN:
;WITH cte_A AS ( SELECT * FROM (VALUES(1, 'A', 10),(2, 'B', 20), (3, 'C', 30)) AS data(key_col, col1, col2)
), cte_B...
January 3, 2020 at 3:58 pm
Here are queries to demonstrate the points above. Assume for this example that B.col2 is a NOT NULL column.
;WITH cte_A AS ( SELECT * FROM (VALUES(1, 'A',...
January 2, 2020 at 5:07 pm
...OUTER JOIN, if the filter is on the OUTER table, it needs to go to the JOIN criteria or it converts the OUTER JOIN to an INNER JOIN which...
January 2, 2020 at 3:59 pm
You need to specify an explicit format (conversion code) for the date conversions, viz:
CONVERT(varchar(100),ISNULL(despatch_group_start_date,'01/01/1900'), <format_code_needed_here>)
January 2, 2020 at 3:52 pm
OK, so I guess the AFTER trigger would have to use the deleted table to check for UPDATEs vs. just relying on the UPDATE() function.
CREATE TRIGGER dbo.TriggerSource_AFTER_UPDATE
...
December 31, 2019 at 3:35 pm
I don't know, maybe I'm not thinking about it right, but I was anticipating something like below. SQL checks a column value being UPDATEd and doesn't actually change it if...
December 30, 2019 at 6:26 pm
I've had to use "extension" tables here a few times too, for various reasons.
If you have an identity column present, do remember / be aware of the issues...
December 30, 2019 at 4:52 pm
I've had to use "extension" tables here a few times too, for various reasons.
If you have an identity column present, do remember / be aware of the issues with SCOPE_IDENTITY()...
December 30, 2019 at 3:19 pm
For (1), you could add a column to the table itself to store the original login name there too (or, far better to save space, an id (that you assign)...
December 27, 2019 at 8:40 pm
December 27, 2019 at 7:16 pm
2. ... Current trigger technology won't even directly allow the saving of LOB columns because the LOB values don't show up in the INSERTED/DELETED logical tables in standard DML...
December 27, 2019 at 6:25 pm
Viewing 15 posts - 2,551 through 2,565 (of 7,614 total)