Forum Replies Created

Viewing 15 posts - 18,541 through 18,555 (of 26,484 total)

  • RE: ORM and Data Abstraction Layer

    There have been several discussions on SSC regarding this. You may want to try searching this site for ORM, NHibernate, Hibernate.

  • RE: selecting only 1 row among date columns

    Actually, using SQL Server 2005, this may be the better choice as it keeps the data with the appropriate rows.

    create table #MyTest (

    [name] char(1),

    ...

  • RE: Backup question

    The transaction log is the transaction log. It doesn't matter if you have one filegroup for the data or 100 filegroups for the data. There aren't separate transaction...

  • RE: Backup question

    Can't speak to using filegroup backups, I have never used them personally.

    Regarding shrinking the t-logs after t-log backups, NO. It would simply have to grow again as transactions are...

  • RE: Backup question

    PiMané (10/30/2009)


    basically what you're saying is that if I NEVER make a transaction log, cause I don't need for any reason and have full mode to make differential backups, the...

  • RE: Backup question

    Full and Differential backups do not truncate the transaction log. This is only done by transaction log backups. Please note that truncating the transaction log is NOT the...

  • RE: Date and Time Selection Query

    something like this:

    declare @StartDate datetime,

    @EndDate datetime;

    set @StartDate = '2009-10-14';

    set @EndDate = '2009-10-21';

    select

    *

    from

    where time between...

  • RE: Enforce Password Policy checked

    jude-32296 (10/30/2009)


    When I transferred my logins from one Sql 2005 to another, I failed to change a setting in the script & now all my logins have "Enforce Password Policy"...

  • RE: Date and Time Selection Query

    frontpedal (10/30/2009)


    Hi everyone,

    My database table has a time field called [time], Data Type of "Numeric" length of "9" with a Precision of "14" a Scale of "0".

    The query below...

  • RE: Are the posted questions getting worse?

    jcrawf02 (10/30/2009)


    WayneS (10/29/2009)


    CirquedeSQLeil (10/29/2009)


    How do you find the time? School, articles, SSC, writing books, work...

    A former boss of mine used to say... if 24 hrs a day isn't enough,...

  • RE: Cursor help - Or provide different solution?

    Unfortunately, since you haven't provided the DDL for the tables, sample data in a readily consummbale format, or expected results based on the sample data, this is all I could...

  • RE: Hierarchical Table Design Question

    ali.prasla (10/29/2009)


    I need some help in designing the table that can handle unbalanced/ragged hierarchy. What should be the table structure of below scenario? Below scenario entails that Bill is...

  • RE: Unable to begin a distributed transaction

    Have you checked the DTC configurations between Server2 and Server 3? You will find that through Admistrative Tools, Component Services.

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (10/29/2009)


    I think Gail is like me, running from thing to thing, not sure how all the plates are staying in the air.

    At least I have kids...

  • RE: Are the posted questions getting worse?

    Is it just me today or are OP's purposely posting things today that are as clear as mud?

Viewing 15 posts - 18,541 through 18,555 (of 26,484 total)