Viewing 15 posts - 376 through 390 (of 13,445 total)
he's casting to INT2, which is IBM's as400/DB2/Universe? smallint equivalent i think.
the logic Phil identified is still the same though, cast to bigint INT8/ and see what is...
July 25, 2017 at 2:47 pm
adpr0401 i've seen the same issue multiple times since the last...
July 25, 2017 at 2:23 pm
use powershell, it will be easier;
i googled "powershell export ssis package from integration services catalog" and the first four script hits all look familiar enough to work for you.
July 25, 2017 at 1:59 pm
tables and views are easyto convert, but procedures that do stuff meta-data wise will require a complete re-write.
checkdb? kind of equivalents are CHECK TABLE , REPAIR TABLE , ANALYZE TABLE
reindex? backup and...
July 25, 2017 at 1:42 pm
i run something like this that installs all my standard scripts on a given server.
you are really asking how can i add an outer loop to this, so ii...
July 25, 2017 at 1:37 pm
July 25, 2017 at 1:27 pm
this linky shows how you can peel the orange with a chainsaw:
instead of simply downloading all the projects and using a text editor to search the *.dtsx files, this...
July 25, 2017 at 1:24 pm
https://docs.microsoft.com/en-us/sql/integration-services/service/ssis-catalog
the catalog automatically encrypts the package data and sensitive values
here's what i did: narrow down what table it could possibly be:SELECT
OBJECT_SCHEMA_NAME([colz].object_id),
...
July 25, 2017 at 1:13 pm
i seem to remember that the package_data column of the SSISDB.[internal].[packages] is actually an encrypted value stored as a varbinary columns, so you cannot cleanlyconvert it to search the xml...
July 25, 2017 at 12:46 pm
can you check to see if the .Net 3.5 library was installed? unless you hand edit a config file, you could install say, SQL2014 or 2016, and db mail does...
July 21, 2017 at 1:53 pm
i have a job scheduled on each server that contains a reportserver database that updates the job description with the report name, so it's much easier to track down that...
July 21, 2017 at 11:01 am
certainly possible, but something like that sounds like it needs to be part of the dynamic generation processes, and not a cleanup after the fact.
the problem is we don't...
July 20, 2017 at 9:24 pm
sys.dm_exec_sessions has whether a spid/session_id is a user process or a system process.
thios seems to work for me, is this what you are after?
SELECT...
July 20, 2017 at 8:07 am
I would think the log would be useless, as it has what was successfully committed, and is not a log of errors and what did NOT get inserted.
you...
July 20, 2017 at 7:03 am
jayoub i think you have to avoid using sqlcmd in this case, and create a simple SSIS package isntead.
I knew two things right away that were affecting you:
you...
July 19, 2017 at 12:56 pm
Viewing 15 posts - 376 through 390 (of 13,445 total)