Forum Replies Created

Viewing 14 posts - 1 through 14 (of 14 total)

  • RE: Migrate membership, roles and profiles

    Spot on!!!!

    Thanks.

  • RE: Migrate membership, roles and profiles

    Thanks for your help. After discussions with some of my microsoft guru contacts, they suggested I simply create a console or winforms app to leverage the membership, roles and...

  • RE: Migrate membership, roles and profiles

    I was able to get the Table Profile stuff working no problem. I'm currently trying to figure out how to call the System.Web.Security.Membership API from w/in a custom script...

  • RE: T-SQL Help

    beezell (6/19/2009)


    Here's one way to do this. This is using a CTE (assuming you're using 2005 or higher). If not, it is easy enough to wrap up as...

  • RE: T-SQL Help

    Holy Crap Dude, that's awsome. Works perfectly!

    I really appreciate it. 🙂

  • RE: Gen Bogus SSNs?

    GSquared (5/14/2009)


    That won't work. You're selecting a distinct value in an inline sub-query, that means that one row is distinct when compared to nothing at all. That won't...

  • RE: Gen Bogus SSNs?

    Ok, so I execute the following on the table:

    update dbo.masterenroll

    SET SSN = (

    select distinct right('000' + cast(abs(checksum(newid()))%1000 as varchar(3)), 3) +

    right('00' + cast(abs(checksum(newid()))%100 as varchar(2)), 2) +

    right('0000' + cast(abs(checksum(newid()))%10000 as...

  • RE: Gen Bogus SSNs?

    Hi, thanks for your response. Unfortunetly, I don't have an ID. Sux I know.

  • RE: Gen Bogus SSNs?

    Thanks for your response. I tried your suggestion and got a ton of duplicates.

    Hmmmm.

  • RE: Data Flow Suggestions? Anyone?...Ferris?

    GSquared (4/28/2009)


    Personally, I don't think I've ever used SSIS to move data from one SQL database to another, on the same server. I use T-SQL scripts/procs for that. ...

  • RE: Data Flow Suggestions? Anyone?...Ferris?

    Interesting point. I'm going to stew on that a bit.

    Thanks!

  • RE: Data Flow Suggestions? Anyone?...Ferris?

    stevefromOZ (4/28/2009)


    Just out of interest, are you running this package (packages) in Visual Studio (ie debug) or pushing them to the SSIS service and executing them via say SSMS or...

  • RE: Data Flow Suggestions? Anyone?...Ferris?

    Jetro (4/28/2009)


    Hi,

    Why do you have one package for each of the source tables? Maybe it helps to create one package with one dataflow task for each of the source tables...

  • RE: Suggestions, anyone....Ferris?

    Hi, thanks for your response.

    "I'm not sure I have the complete picture. Are the sources of the web databases data all SQL Server databases or some other kind of...

Viewing 14 posts - 1 through 14 (of 14 total)