Viewing 15 posts - 136 through 150 (of 13,429 total)
Unfortunately, unless you have set something up previously, this is not possible. No default setting captures that level of information, as the log would probably exceed the database size.
also, no-one...
August 13, 2019 at 4:54 pm
dtexec /Server "SERVER-INSTANCE" /envreference "DEV" /isserver "\SSISDB\Sample\Sample\pkg_Sample.dtsx" /par "$ServerOption::SYNCHRONIZED(Boolean)"
the red part i highlighted is the definition, and not the value, isn't it?
i think it is supposed to actually also...
July 23, 2019 at 10:04 am
your issue is ISNULL and implicit conversions.
ISNULL(NumericColumn,'') fails because numeric column can never be empty string (the value of '')
the isnull function is attempting to cast the varchar value of...
July 23, 2019 at 9:54 am
are you sure you are sysadmin on the server? the error implies either the spelling of the trigger is incorrect, or you do not have permissions.
if you have view any...
July 21, 2019 at 2:44 pm
on the SQL server itself, someone has created a logon trigger on all server.
that trigger is preventing the login...it might be doing it on purpose, or it might be an...
July 21, 2019 at 11:12 am
looks like although it has a lot of moving parts to set it up, there's a decent article from Ms to help with the walk through:
this link is for SQL2017,...
July 19, 2019 at 4:18 pm
i think you are targeting the wrong tool.
you want to use an SSIS package to pull data from SQL, and let that do the HTTP post.
SQL, by itself, does not...
July 3, 2019 at 6:19 pm
so the scale out deployment will distribute the reports executions out to the SSRS farm, which is great if you have lots of calls to the reports. I would expect...
June 28, 2019 at 8:49 pm
blindly updating is not a solution, as mentioned, but you can at least review the data and make plans accordingly.
from the metadata, this query generates the queries to compare the...
June 21, 2019 at 9:25 pm
I updated my original code sample with one I have just tested. it outputs data the way i would expect now.
I am using a stringBuilder instead of a DataTable to...
June 18, 2019 at 12:09 pm
NOT IN doesn't work the way you might expect if the column tested has any NULL values.
you'll want to exclude them explicitly.
WHERE SoftwareTitle NOT IN
(SELECT Software FROM...
June 16, 2019 at 1:14 am
once assigned, i think you have to Shift + Right click, and then choose open With...
the dialog has the option to set the default application near the bottom.
June 13, 2019 at 1:53 pm
you'll just need a loop that iterates per server
the question is where the list of servers comes from, here i have an example of populating form a query, but you...
June 13, 2019 at 1:38 pm
i think you should have gone straight to the source.
https://ola.hallengren.com/versions.html
09 Apr 2018
Added support for Linux and Amazon RDS in the job creation in MaintenanceSolution.sql.
June 11, 2019 at 2:52 pm
look specifically at your row number function. if you are getting duplicates, identify the column that causes duplicates, and add it to the partition by of hte row_number() statement:
June 11, 2019 at 2:11 pm
Viewing 15 posts - 136 through 150 (of 13,429 total)