Forum Replies Created

Viewing 15 posts - 18,151 through 18,165 (of 22,202 total)

  • RE: Any free Intellisense tool available?

    Free? No. But Red Gate's SQL Prompt is extremely inexpensive.

    It won't help while writing the code, but ApexSQL has a free clean-up utility that will help you with formatting.

  • RE: Normalization

    You can store tableA data in TableC without a relation, but without a relation you have no way of knowing that the data is valid. If TableA data gets deleted,...

  • RE: Administering SQL 2000 with SQL 2008 client tools

    You can manage 2000 databases from the 2008 Management Studio. Out of the box you can't edit DTS packages and I'm not sure how you would go about doing that....

  • RE: How to design 1:n relationships in Sql Server Management Studio?

    info (3/1/2009)


    Imagine I have two tables: Manager and Player. This is for a football team, where several players can play for one manager only and a manager manages several (11)...

  • RE: performance tuning

    That's way more information than can be easily answered in a post on a board. Performance tuning has three major areas of concern, the OS & Server, which you usually...

  • RE: How to improve performance in SQL Server Express 2005.

    I'd suggest a couple of different things. First, have you checked the execution plans on your select statements to be sure that the indexes on your tables are being used....

  • RE: DB Scripts...best way to create incremental scripts

    I'd suggest getting all the database objects into source control. Then, make all your changes through the scripts, not by editing the database through Management Studio. You should very carefully...

  • RE: Question in sp_recompile

    It's in the Books Online, the SQL Server documentation. Just look up sp_recompile and read what's there.

  • RE: dynamically determine parameter values

    David Sumlin (2/27/2009)


    I haven't played with SQL 2008 yet. Does anybody know if anything along these lines has been introduced in SQL 2008?

    If not, almost makes me want to...

  • RE: Third Party SQL Server 2005 Profile Recommendations

    Ah, if you want to collect errors, this won't help at all. It's only going to show completed queries. You'll need to set up a server side trace.

    Howerver, a slightly...

  • RE: Are the posted questions getting worse?

    Jeff Moden (2/27/2009)


    Oracle... when code is autogenned, it comes out in all uppercase for things like column names whether you want it to or not. Oracle peeps have gotten...

  • RE: Third Party SQL Server 2005 Profile Recommendations

    Profiler doesn't debug queries. It captures performance and behavior. I'm not aware of a third party tool that does everything that it does.

    However, just because you don't have Profiler doesn't...

  • RE: Filtering records based on parameter values

    Just to help the newbiezzzzz a bit further, this is an Access bit of code you're writing, not T-SQL inside SQL Server 2005, right?

  • RE: DB Design Help

    No, that's probably not a great way to go about it. Instead have a many-to-many join table between the two other tables. So you'll have a ChangeRequest table and a...

  • RE: Tune Stored Proc

    I see a loop and I want to eliminate it, if possible. But you're right, of course.

    I still think partitioning the data would be a better approach rather than having...

Viewing 15 posts - 18,151 through 18,165 (of 22,202 total)