Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 7,164 total)

  • RE: Get the Column information(ole db source and ole db destination) from DTSX (SSIS package) file using C#

    What are you using from .NET? Are you trying to read the raw XML or are you using the SSIS Object Model assemblies?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: dynamic import of multiple flat files

    If you have 25 different file formats going into 25 different tables with different schemas then you will need 25 different Flat File Connection Managers, and at minimum one Data...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Pre Login HAndShake Error in Sql Server - 2005 SSMS

    osql was deprecated in SQL 2005 so I would recommend to stop using it. sqlcmd is the replacement for it.

    Are you trying to connect to a local or remote instance?...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Finding users with particular roles

    All sp_MSForEachDB does is implement a cursor for you dynamically and run your code against each DB. Check the article I posted. The proc provided does the same thing, except...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Pre Login HAndShake Error in Sql Server - 2005 SSMS

    From the provider error I am assuming you are trying to connect to a local instance. Please confirm.

    Also, you posted in a 2008 forum but are saying 2005 SSMS. Please...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Issue with C# Script task in SSIS

    jrgomont (5/22/2013)


    Thank you all for your replies. I fixed the issue. I have recreated a new variable and passed the value to the new one and it wirked. Fir some...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Backup Job Incomplete

    Mind sharing what was logged for the run where you missed backing up some databases?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Backup Job Incomplete

    Are you capturing the output of the job step to a log file or table, the options in job step advanced tab?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Today's Random Word!

    Revenant (5/22/2013)


    bcsims 90437 (5/22/2013)


    crookj (5/22/2013)


    Daniel Bowlin (5/22/2013)


    fatigue

    Lethargy

    Apathy

    Indifference

    meh

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Finding users with particular roles

    UconnDBA (5/22/2013)


    Can use sp_MSForEachDB, like below, to get results from each database on an instance.

    EXEC sp_MSForEachDB 'select members.name AS UserName, RTRIM(LTRIM(roles.name)) AS RoleName

    from sys.database_principals members

    inner join sys.database_role_members drm

    on members.principal_id =...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Retrieving Data From Hyphenated Server

    That's odd. I am not having any issues accessing my vm which includes a hyphen in the name:

    Maybe check that you have permissions to access WMI on that server, i.e....

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Deploying ssis package

    Looks like a validation error. Is it safe to assume that any paths to the attachment file are determined dynamically at runtime? Many times the problem with deploying to a...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Package downgrade from VS 2010 to 2008r2

    shrsan (5/20/2013)


    Hi,

    I have created packages in VS2010 in development but my production env is 2008r2. how do i downgrad my packages?

    Thanks in Advance

    In short, you can't, at least by Microsoft-supported...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Universal driver for database for visual studio

    ODBC would be my first choice these days but that only covers your connectivity, not the code going against the database. Unless you are writing ANSI-standard SQL that is so...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Finding users with particular roles

    What about cases where a User-defined Database Role is a member of db_owner?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 1,066 through 1,080 (of 7,164 total)