Forum Replies Created

Viewing 15 posts - 406 through 420 (of 13,460 total)

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

     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),
    ...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: List of all dtsx files used in [Integration Services Catalog] - I need help with the SELECT statement

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: sp_send_dbmail - Error when passing @query parameter.

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: SSRS Report Descriptions Query

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Deny access to same table across all databases dynamically

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Get total user session with client IP address

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Who inserted duplicated key value yesterday

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: XML output to file using SQL Agent Job

    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...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Linked Server Error - Login failed for user NT AUTHORITY\ANONYMOUS LOGIN

    I believe the issue is the Service Principal Names (spn) on one or both of the servers in question is not set up, so the Windows credentials do not get...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Having issues with creating a FK

    your Table structure has all the columns in brackets, so that the name with spaces doesn't break the CREATE TABLE command..
    your Foreign keys simply need to have the same logic.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: MSSQL - Create relational schema from inherited database

    Doing a best guess at Foreign keys depends on the design and proper naming conventions.
    for example, do all the tables have primary keys? are they properly named? (ie TableNameID...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: To find the when SQL server was rebooted couple of times earlier?

    The SQL Error Log has what you are looking for
    Every time an instance is restarted, the previous log is closed and marked as archived, and the new one is...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Formatting in HTML table

    sqlenthu 89358 - Tuesday, July 18, 2017 5:05 AM

    Lowell - Monday, July 17, 2017 6:27 AM

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Hashing column using SHA256

    Hashbytes is a varbinary(8000) return value, so you need a larger column, and then you are all set.
    you do NOT need to filter or edit your columns for dashes...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Hashing column using SHA256

    sure the final result must be one of those data types....but you can convert your columns to the acceptable data types and you are all set.
    and anyplace they say...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 15 posts - 406 through 420 (of 13,460 total)