Forum Replies Created

Viewing 15 posts - 151 through 165 (of 411 total)

  • RE: More Tips for New (and old) DBAs

    Awesome article, especially the part at the end.

    One things that might be worth pointing out is that while there are genuinely good times to use cursors, most of the time...

  • RE: Which .Net Language Should We Adopt

    Steve Jones - Editor (1/1/2009)


    It's definitely a business decision, and I'd recommend C# if it's not substantially more expensive (time and money) for your people. If they have a lot...

  • RE: Cursors for T-SQL Beginners

    mtassin (1/5/2009)


    I dunno if this qualifies as a weird case where you need a cursor or not.

    Certainly if this could be done as one big set based query, I'd go...

  • RE: Cursors for T-SQL Beginners

    Thanks Jeff and Wagner.

    I took a class on database theory that used Oracle for all examples, but for the most part I have used SQL Server. Even...

  • RE: Cursors for T-SQL Beginners

    Jeff Moden (1/1/2009)


    I believe that articles like this one serve as a great disservice to anyone new to databases and believe that it's horribly irresponsible of an author to try...

  • RE: index option

    mesql (12/23/2008)


    What are index options that can be applied to clustered index but not to nonclustered index.

    Well, one that comes to mind is included columns.

    Just out of...

  • RE: Linked Server from SQL 2005 to SQL 2005

    Are you using the Fully Qualified Domain name?

    Also, how do the domains communicate?

  • RE: Is Copy Possible This Way?

    Those are all great options, you can also use OpenRowset with select into to avoid setting up a permanent linked server.

    Also, you can look at a combination of SQL Compare...

  • RE: Powering up DTS with PerlDTS

    I am not myself a perl programmer, but this was both enlightening and a fantastic piece of work.

  • RE: The Set-Based Limit

    Kit Brandner (12/22/2008)


    Consider the one exception I've encountered - generating a variable number of PIN codes according to a proprietary algorithm. There are easily several set-based approaches, but they run...

  • RE: Add Columns to existing table where I need the column to be?!

    WebTechie38 (12/22/2008)


    By the way, what is SSMS?

    I know DTS and its big brother SSIS. But what is SSMS?

    Thanks,

    Tony

    SSMS is SQL Server Management Studio, it replaced The Enterprise Manager that...

  • RE: The Set-Based Limit

    Jeff Moden (12/21/2008)


    timothyawiseman (12/21/2008)


    Two things of note though are that it is sometimes faster to code the procedural solution than it is to code the set based one, largely due...

  • RE: Indexes

    Hugo Kornelis (12/19/2008)


    Sorry Steve, but I have to disagree with you on this one.

    Indexed views are not an index type. They are a special type of view, created by creating...

  • RE: Add Columns to existing table where I need the column to be?!

    I fully agree with Gail that column order should not matter in SQL and generally the answer to changing column order is just to reorder the output in the select...

  • RE: The Set-Based Limit

    I agree with Ninja, this will likely quickly become one of the longest threads on the site.

    With that said, I personally have never seen a sql procedural solution which is...

Viewing 15 posts - 151 through 165 (of 411 total)