Viewing 15 posts - 151 through 165 (of 13,451 total)
qadding the columns them selves is just a DDL operation. you would not need to do that inside SSIS.
ALTER TABLE ADD Column1 varchar(etc...
i suspect you mean what about the data...
August 25, 2019 at 11:44 pm
BIDS is the older version for SSIS development from SQL2005 to SQL2008R2
in 2012 and Above, BIDS had a name change to SSDT(SQL Server Data Tools). it is basically the same...
August 25, 2019 at 11:33 pm
i think this will fix just two items though; won't he have continued issues when he discovers %20 or other url encoded values?
i would think we need to consider all...
August 23, 2019 at 8:13 pm
that reminds me of one of those bad practice examples i wrote, to show how confusing keywords as object names could be.
IF NOT EXISTS(SELECT 1 FROM sys.databases...
August 23, 2019 at 3:38 pm
can you try EXECUTE AS LOGIN='domain\user' instead of execute as user, and execute from , say the master database as the context?
can you duplicate the user error then?
August 22, 2019 at 3:19 pm
it sounds like you might have removed public permissions from the server,and specifically in master? could that have happened?
if the end user is using something like SSMS, they typically get...
August 21, 2019 at 8:43 pm
i wrote/modified/collected some powershell scripts to disable various group policies or services that are related to CEIP and other unnecessary services.
I hope this helps.
###################################################################################################
##disable cortana
###################################################################################################
New-Item -Path...
August 20, 2019 at 4:13 pm
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
Viewing 15 posts - 151 through 165 (of 13,451 total)