Viewing 15 posts - 406 through 420 (of 2,648 total)
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
those files you are getting.... can you answer the following.
...
September 24, 2023 at 9:30 pm
why are you dropping and recreating the indexes? what are you trying to accomplish with it?
(for Phil - OP has DROP_EXISTING = ON so indexes are there already while import...
September 24, 2023 at 12:41 pm
as Ant-Green mentioned above you need to use a SSMS version compatible with SQL 2012 - SSMS 19 only supports 2014 or higher and you are trying to connect to...
September 22, 2023 at 4:10 pm
you will need to speak with vendor - and see if the application is already prepared to work with SQL Server instead of Sybase. It may well be just a...
September 22, 2023 at 11:29 am
read this for an explanation https://stackoverflow.com/questions/46312573/ssrs-the-restrictions-imposed-by-the-constrained-flag-in-the-strtoset-function
September 21, 2023 at 7:52 am
Viewing 15 posts - 406 through 420 (of 2,648 total)