Viewing 15 posts - 181 through 195 (of 2,610 total)
Msg 229, Level 14, State 5, Line 5 The SELECT permission was denied on the object 'fnRule_JobNumber_Validation_multiple_jobcodes', database 'TSE_Automation', schema 'WDM_TSE'.
I have taken the contents of the function and...
January 10, 2024 at 2:53 pm
For a quick view I would just right click on the database and select Reports\Standard Reports\Disk Usage By Top Tables and look at the report.
Or you could write a query:
January 10, 2024 at 1:36 pm
The company I work for has implemented ChatGPT 4 on its internal servers, actively promoting its usage among all employees. Given its deployment on company servers, there...
January 8, 2024 at 11:14 pm
My employer blocks all AI, so we can't use it for anything.
On my own, at home, I've used both Bing Chat and ChatGPT to solve programming problems. Especially for...
January 7, 2024 at 5:26 pm
duplicate
January 5, 2024 at 12:55 pm
I would initially try creating the temporary tables (#potential_dups and #person_list) before you insert into it and create the CLUSTERED indexes inx_potential_dups_temp1 and index idx_person_1 instead of NONCLUSTERED, and create...
January 5, 2024 at 12:55 pm
To resolve this issue, you need to ensure that the ANSI_NULLS option is set to ON for the table 'eligibility'. You can modify the table definition to set the ANSI_NULLS...
January 4, 2024 at 3:51 pm
I would just shrink the data files and rebuild the indexes including the clustered indexes.
January 4, 2024 at 3:12 pm
If you want to make the query you've given as fast as possible to return the rows you could use a schema bound view:
-- Create the view...
January 4, 2024 at 1:16 pm
Indexes on [dbo].[eligibility]([member_id]) INCLUDE ([eligibility_id])
and [memberphonelookup]([member_id])
January 3, 2024 at 10:14 pm
Is it really returning all the rows in the table? If so then why has the OP got a where clause?
January 2, 2024 at 4:32 pm
How many rows does the query return?
An obvious solution is to create an index on Final_date and include columns (column1, column2... column18)
You might be able to get away with just...
January 2, 2024 at 12:06 pm
I expected that if I use pagination it will only load 1st page for me, which should be very quick. And load the rest pages only if users request...
January 1, 2024 at 5:10 pm
Instead of applying the recompile at the procedure level, you can apply it at the query level within the stored procedure using the OPTION (RECOMPILE) hint. This way, only specific...
December 28, 2023 at 10:07 am
Viewing 15 posts - 181 through 195 (of 2,610 total)