Forum Replies Created

Viewing 15 posts - 196 through 210 (of 224 total)

  • RE: Can replication supply a hot failover?

    I still need to provide a solution. I'm unable to upgrade the server version or purchase any products. Technically, the failover is accomplished by the application server. Maybe I do...

  • RE: Puzzled by simple recovery model and transaction log

    I know a good reason to shrink log files. Database was set up for full recovery, but no regular t-log backups were scheduled (engineer who set it up thought log...

  • RE: Best practices - How an app. should behaves when the DB server is gone

    Everyone who posted is right when they say that the specific business requirements and architecture are essential to determining what should happen when the database goes down.

    I worked on an...

  • RE: Why are Women exiting It?

    Women leave IT because the IT culture is not compatible with motherhood. I was in IT, having somewhat fallen into it, in the 1990s. I didn't have kids then, but...

  • RE: CLient tools install of 2005 anomoly

    I had similar problems. I'd installed Visual Studio 2005 with SQL Express before installing SQL Server 2005 Developer. Since client tools already existed (but not all of them) the client...

  • RE: Finding values with cents...

    One more way to do this, but I don't see any speed advantage on my machine. All three methods are 37 seconds. Although % is typically an integer operation, it...

  • RE: Nested Case Statement

    I don't see anything obviously wrong that you're doing. It's a complicated calculation. It's possible that one or more implicit date conversions aren't yielding the correct date or even data...

  • RE: Default Values

    Am I correctly deducing that you're changing the Order ID field? If so, IDENTITY won't work for you. And is Order ID part of the primary key? Are you changing the...

  • RE: The Jerk at Work

    Andy, yes, you don't fit in that culture. At almost every position I've held, I've been considered competent and easy to work with. When I started my career, I was...

  • RE: Constraint

    CREATE

    TABLE TestBits(

    thekey

    INT PRIMARY KEY,

    A

    BIT

  • RE: How to write a check constraint

    CHECK ((ContentTypeFk OR ContentGroupID 0) AND ContentTypeFk ContentGroupID 0)

    I like the multiplies to 0 check, very clever. You could also write the check constraint like this:

    CHECK (ContentTypeFk + ContentGroupID 0 AND ContentTypeFk ContentGroupID 0)

  • RE: setting up witness on SQL SERVER Express

    Are you sure that your Express instance has TCP/IP enabled? It's installed by default with only shared memory enabled. Check it out in SQL Server Configuration Manager.

    Check out the topic...

  • RE: SQL Express over network

    Yes, I think you can use SQL Express. But, you have to change the default settings that it's installed with. It's installed initially with no network connectivity and only Windows...

  • RE: Dropdown lists having hundreds of items? Better way?

    I can think of a few ways to make this easier. I'm not sure what your application platform is, so I don't know how much custom programming is required for...

Viewing 15 posts - 196 through 210 (of 224 total)