Viewing 15 posts - 451 through 465 (of 2,694 total)
Thanks for that. We use synonyms to refer to other databases so hopefully that shouldn't cause too many issues.
I'll give it a go with a test database...
October 4, 2023 at 8:08 pm
Thanks for that. We use synonyms to refer to other databases so hopefully that shouldn't cause too many issues.
I'll give it a go with a test database and see...
October 4, 2023 at 1:59 pm
create an extended event session and log all the code being issued by the pc where you execute that app - that will give you full list of sql statements...
October 4, 2023 at 12:28 pm
search for the content instead of the object id
SELECT *
FROM sys.sql_modules
WHERE definition like '%usp_drop_temp_ingenix_codes%'
and see what you get.
I would also recreate the SP just in...
October 3, 2023 at 12:33 pm
most of the code looks like someone used to Oracle that was moved to work with SQL Server - in Oracle world majority of things are case sensitive - and...
October 3, 2023 at 10:51 am
check if someone had DENY'ed create tables in TEMPDB- or even deny'ed other permissions that could cause the issue.
October 3, 2023 at 5:28 am
common man!! IA is Spanish for AI
It is the Portuguese for AI
October 2, 2023 at 6:49 pm
how many rows of tbl A (18900000 total) have the ReferenceNum = 0 ?
and why aren't you filtering them when doing the insert into the temp table?
October 2, 2023 at 1:01 pm
I also see, dev team is using DISTINCT operator as a common practice. Is there any proper ways to re-write to the queries to avoid the usage of distinct...
October 2, 2023 at 12:06 pm
You said in your narrative in your original post that "it reads last 30 mins of data from the tables involved" and yet ALL of your...
October 2, 2023 at 11:56 am
before we can even suggest anything else...
1 - WHY are they returning 40 Million rows on a function call? what purpose does this accomplish?
ask the devs what is this output...
October 1, 2023 at 10:29 am
can you also get a ACTUAL execution plan of doing those sqls
and there is some duplication of access to table C_B_PARTY
take following snippet.
take following snippet.
first INNER join...
October 1, 2023 at 8:11 am
If you want a load into a new table, then create the empty table AND create the Clustered Index. Then, forget SSIS... use BULK INSERT with the TABLOCK option...
September 27, 2023 at 7:55 am
helps to read the documentation.
search for tuple-mover
September 26, 2023 at 11:01 pm
Sql server edition (express, standard, enterprise) - developer --- if you are using this for Production usage you CAN NOT use developer license - if it is only for development...
September 24, 2023 at 10:26 pm
Viewing 15 posts - 451 through 465 (of 2,694 total)