Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 4,272 total)

  • RE: Migration

    sunny.tjk (10/5/2011)


    Sean,

    When DTS compared to SSIS, which tool is the best with respect to performance? I was told that DTS performs much better if you are just moving data from...

  • RE: SSIS Script Component - Error:

    I'm guessing that the field value is null or nothing, are you sure there is a value in the field at that point?

    CEWII

  • RE: SSIS Script Component - Error:

    What line is producing the error?

    I'm guessing here:

    sqlCmd.Parameters("@ContactID").Value = Row.ContactID

    OR

    If (reader("FirstName").ToString() <> Row.FirstName) Then

    You might need to test for DBNull, using a command like:

    If dataRow.Item("BlockSize") Is DBNull.Value Then

    I chopped that...

  • RE: Attunity works from BIDS (Standad Edition)?

    I think the idea is that the tools will let you develop for any edition but you can't actually run them on the server unless the features are supported by...

  • RE: Change variable scope

    Ah, excellent point.. But the answer is still the same..

    CEWII

  • RE: Can't see Variable Windows

    Are you sure it isn't just docked in a weird position? I agree it can't be disabled, but it can be moved around. I keep mine docked and...

  • RE: sp_addrolemember stored procedure is missing

    Hm, odd, on my databases I see a sys.sp_addrolemember but not a dbo.

    the way sp_ sprocs are supposed to work is that if it doesn't find a local version it...

  • RE: breaking sql 2008 cluster for ssas

    You should be able to create it in a new resource group without removing the existing server. I agree you can't add SSAS to the existing group from the install,...

  • RE: Attunity works from BIDS (Standad Edition)?

    My experience tends to indicate that BIDS will run the component even if it is a higher edition. Not sure I can prove that.

    But will fail when you try...

  • RE: Change variable scope

    Without some extra tools (which I can't name) it isn't possible. Unless you created a lot of variables that are scoped wrong this is really just an inconvenience. Sorry...

  • RE: ssis lookup problem

    Phil is right on track, you have to have SOMETHING the same between the file and the database to match against. If you don't have a matching field it...

  • RE: breaking sql 2008 cluster for ssas

    sqlstar2011 (10/3/2011)


    an extra clustered ssas would require an extra license. thats what i was told.

    That depends a lot on the config, but a separated database and SSAS still requires an...

  • RE: sp_addrolemember stored procedure is missing

    I might be mistaken but those system sprocs are stored in a special system database now (as of 2005) and master before in 2000 and before. You not finding...

  • RE: breaking sql 2008 cluster for ssas

    Perry Whittle (10/3/2011)


    just out of interest, what do you have against a clustered instance of analysis services?

    I was just thinking this myself..

    As for scripting out the logins, you want to...

  • RE: Went from a 3 file DB to a 6 file DB MDF,NDF

    To be honest I think your approach is probably not the best.

    For big database I can definitely see it, but for smaller databases I generally break then up manually, meaning...

Viewing 15 posts - 1,021 through 1,035 (of 4,272 total)