Viewing 15 posts - 376 through 390 (of 7,597 total)
Not enough info provided for us to be able to say. (1) Is SQL indicating that it's short of memory? (2) How large are your databases? (3) How many simultaneous...
August 21, 2023 at 5:42 pm
It's likely the fragmentation is having some effect on overall performance by causing some small additional I/O.
To clarify, for a single keyed lookup, the index performance is not affected at...
August 18, 2023 at 2:48 pm
Select * from Table T1
JOIN TableT2 on (T1.A IS NOT NULL AND T1.A =T2.A) OR (T1.A IS NULL AND T1.B = T2.B)
August 15, 2023 at 3:02 pm
Also how do I check if the table has had any options set for SP_TABLEOPTIONS such as 'LARGE VALUE TYPES OUT OF ROW'. I doubt this would be the...
August 10, 2023 at 2:48 pm
When you ALTER a column, SQL creates a new column to store the data, it doesn't re-use the existing space for the new column. You'll need to do some type...
August 9, 2023 at 2:49 pm
My other feeling was that having it run multiple times (2, 3, 4?) at the start of the month could be deceptive / confusing to people looking at...
August 6, 2023 at 9:45 pm
This method of determining Tuesday:
DATEPART(weekday, @CurrentDate) = 3
requires a specific DATEFIRST setting to work correctly. Many business have locations around the world, so it's safer to use a...
August 4, 2023 at 7:36 pm
Fair enough.
In that case, let's create a view that has the merged tables for anyone to use. That is much cleaner.
August 4, 2023 at 3:46 pm
Yikes, if a developer can't join/merge two tables with distinct date values to a combined table, they need additional training, and pronto.
August 4, 2023 at 3:43 pm
Personally I prefer a nonworkdays-only table (I don't call it a "holiday" table because sometimes it's a nonwork day but not a holiday (such as for a power outage, etc.)).
That...
August 4, 2023 at 3:37 pm
<removed, dup comment>
August 4, 2023 at 3:30 pm
This method of determining Tuesday:
DATEPART(weekday, @CurrentDate) = 3
requires a specific DATEFIRST setting to work correctly. Many business have locations around the world, so it's safer to use a method that...
August 4, 2023 at 3:30 pm
@dennis Jensen:
I never presume to know the requirements of the task better than the person requesting the code.
"If the first Monday of the month is a holiday, than I need...
August 4, 2023 at 3:23 pm
I'd strongly urge you not to mess with the DATEFIRST setting. You don't need to, and it could throw off other code which might need a different setting (if the...
August 3, 2023 at 8:45 pm
I don't believe you can do this directly. However, you could have the first step of the job determine if it is a holiday, and if so, to schedule a...
August 3, 2023 at 5:39 pm
Viewing 15 posts - 376 through 390 (of 7,597 total)