Viewing 15 posts - 2,071 through 2,085 (of 2,652 total)
January 17, 2019 at 4:10 pm
January 17, 2019 at 3:57 pm
SSAS tabular only works with Windows authentication. So if the server is indeed in Tabular mode you need to try it that way.
January 17, 2019 at 2:05 pm
either repeat or use one of the following 2 options.
select *
from (select t1.field1
, t1.field2
, (select top 1 otherfield
...
January 14, 2019 at 4:51 am
January 12, 2019 at 12:45 pm
hum.... may have misread it initially. @SQL_CODE is what contains all the calls to dbo.elast.... bad design on how it was implemented.
so back to those functions. Not sure which...
January 12, 2019 at 12:05 pm
@alexandermkd
the code for proc TARIFF_SIM_MATRIX_3M does not match that of the code being executed as per the explain plans you supplied.
just...
January 12, 2019 at 3:31 am
@jeff - the OP has already tried the some trace flags and also had the legacy configuration turned on .
ALTER DATABASE SCOPED CONFIGURATION SET LEGACY_CARDINALITY_ESTIMATION = ON is the...
January 10, 2019 at 10:59 am
you can still do it although manually.
look at table XVBS_LOG_3M and identify the offer_id that took the longest (you need to compare each record with the previous one...
January 10, 2019 at 4:18 am
January 8, 2019 at 2:49 pm
you need to install SSDT.
either with shell for vs2017 https://docs.microsoft.com/en-us/sql/ssdt/download-sql-server-data-tools-ssdt?view=sql-server-2017
or
for vs2012 https://www.microsoft.com/en-us/download/details.aspx?id=36843
January 8, 2019 at 11:49 am
do you have the explain plan of the proc that is being executed inside the code of the plans you supplied? TARIFF_SIM_MATRIX_3M is being executed on a loop and
both...
January 8, 2019 at 10:31 am
the issue is that the last line fails to meet the correct delimiter "\"\r\n" and as such the value contains a quote
try changing the table to
create...
January 4, 2019 at 4:49 am
I'm trying to investigate an issue where a date field, PolicyCancelDt, of type datetime from...
January 2, 2019 at 11:51 am
Viewing 15 posts - 2,071 through 2,085 (of 2,652 total)