Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 3,011 total)

  • RE: Talking baseball

    Baseball would be better with a true open market: uncapped salaries, no draft, and uncapped ownership. The reason that the Yankees can generate so much money is because...

  • RE: SQL 2008 Compressed Backups

    I like the fact that you can restore a 2008 compressed backup on any edition of SQL Server 2008.

    Much nicer than having to install LiteSpeed on a server in order...

  • RE: Cursor - trying to find another method

    Based on my understanding of your requirements:

    declare @t table (

    RegionName varchar(10) not null primary key clustered,

    [Min] int not null,

    [Max] int not null,

    [NumberToGenerate] int not null

    )

    insert into @t

    select 'Region 1',...

  • RE: HELP! How to automate changing the SQL Service account and password?

    Are you using the same service account on multiple SQL Servers?

    That is a bad idea for many reasons, one of which is how hard it is to change on multiple...

  • RE: How to Build a Datawarehouse from a Database

    Very urgent???

    Do you need to build your data warehouse today?

  • RE: Order By

    Is the Location id column a string data type, like varchar or nvarchar?

    If it is, you will have to cast the column to an integer datatype in the order by....

  • RE: Answering to the Business

    mike.styers (4/5/2010)


    Slippery Slope I think.

    Once you break out what each IT service costs, all it takes is a member of upper mgmt to say, "Look what were paying for <whatever...

  • RE: Got an email from a recruiter today...

    Why there would be a need to explain SQL in layman’s (Lehman’s) terms?

    Are the business people looking at stored procedures to try to figure out what they do?

  • RE: Speed up a database shrink

    Try moving the tables you are truncating into a new file group

    The files in the new file group should be able to shrink fairly rapidly, since they will be empty...

  • RE: Wildcard range search

    Wildcards only work with the LIKE operator, not >= or <=

  • RE: SQL on NLB

    vidya_pande (3/31/2010)


    thanks Lynn.

    ...

    Oracle RAC provides load balancing. Is there any equivalent feature in SQL? If not what is work around soultion ?

    Get a bigger, faster server so it can...

  • RE: Rolling Back a Restore

    It wouldn’t do anything you can’t do already. You can restore a database with a new name, verify it is OK, drop the old database, and then rename the...

  • RE: Determining table insert order

    The script on the link below will give you what you want.

    Find Table Reference Levels

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=72957

  • RE: design - very important

    I think most problems with database applications are built-in at the design stage.

    Once you do a poor job of modeling data, it becomes almost impossible to make a significant change...

  • RE: Shrink DB question

    If you feel that you really need to shrink the database, the script on the link below should do it. Shrinking the database file will result in index fragmentation,...

Viewing 15 posts - 1,441 through 1,455 (of 3,011 total)