Viewing 15 posts - 46 through 60 (of 154 total)
Okay well first off you should get into the habit of defining your keys as PK_FieldName rather than FieldName_PK as the former allows you to seemlessly use them in conjunction...
August 3, 2023 at 8:12 pm
Yes we have already done this -- but you will also need a job that updates your Holiday table for each new year. We store the previous year, the current...
August 3, 2023 at 7:27 pm
The best way to track this information is have it be part of the Stored Procedure you are running and have a table that houses this information in a logical...
August 1, 2023 at 1:09 am
Grant I am with your first statement but ours was not a database related issue but more of a business application issue. The splitting was decided as being the best...
July 19, 2023 at 12:23 am
IF the split means that you can "reduce" the number of rows in one of the tables due to "duplicate information" then you should do it if savings are...
July 17, 2023 at 10:07 pm
Okay well then I will share this information with my colleague as that was not his understanding and of the two of us he has dealt with that far more...
July 17, 2023 at 7:16 pm
Okay I checked with my colleague as I remembered we looked into this in MS SQL so here we go. One cannot use a Columnstore in conjunction with a Table...
July 17, 2023 at 5:55 pm
Thanks nice to know, but like I said the partitioning can be a bit sensitive in regards to other things so do becareful with that aspect.
July 15, 2023 at 7:30 pm
Okay I do not recall all the details but a word of warning. With a Partitioned Table you have to include that partition within everything you do or you totally...
July 15, 2023 at 5:08 pm
I am not sure if your issue is anything like ours but we have stored procedures that need to be ran by a specific system account and also need to...
July 10, 2023 at 10:48 pm
All I can say to you Anders is I do not envy your situation but I do empathize as I have and am sort-of working with something similar but we...
July 3, 2023 at 2:35 pm
I do not know what fields your tables have but doing CONTAINS(JobHistory.*,'"FN21HDA*"') or CONTAINS(Job.*, '"FN21HDA*"') or CONTAINS(Component.*, '"FN21HDA*"') seems extremely wasteful. As I think you mean it to do (which...
June 30, 2023 at 12:58 am
I've learned to appreciate diversity more and differences, not being as judgy when someone doesn't work or interact as I wish they did. If they accomplish the tasks well,...
June 28, 2023 at 12:27 am
Thanks, and yeah GETDATE( ) or actually NOW( ) would be basically correct, I believe.
Note I have worked with so many languages sometimes the exact function names get a bit...
June 26, 2023 at 9:28 pm
If you have SSMS, you could just run the SELECT by itself and it would show you how long it took.
However, if you need that via runtime, then you would...
June 26, 2023 at 6:41 pm
Viewing 15 posts - 46 through 60 (of 154 total)