Forum Replies Created

Viewing 15 posts - 3,721 through 3,735 (of 6,486 total)

  • RE: Developer Edition on Vista

    Richard Buchner, Chicago (4/8/2008)


    OK will try again, thanks for the quick respone !

    Once you install SP2 - the Provisioning tool for Vista should launch - be sure to set up...

  • RE: Performance: Every nth item

    one of these days - I'm going to figure out how to colorize my code without turning it into a wreck........hehe

  • RE: Developer Edition on Vista

    Richard Buchner, Chicago (4/8/2008)


    Is it possible to install and run the SQL 2005 Developer edition on a Vista Business machine.?

    Thanks:cool:

    Absolutely. Essentially ignore the "this program has compatibility issues" messages,...

  • RE: Common Functions & Stored Procedures for New Databases

    WRACK (4/8/2008)


    Thanks Matt,

    Only thing confused me was your reply

    You'd have to copy those things to each of the user databases.

    I assume you mean if I add them to...

  • RE: Performance: Every nth item

    Jacob Luebbers (4/8/2008)


    I can verify your results: changing to the dynamic SQL version runs at 1.2 sec at @PageNum = 8000 on my test data/server.

    Now to speculate on why...

    I can't...

  • RE: Common Functions & Stored Procedures for New Databases

    Model database is what is used as the model for creating NEW databases. So - whatever objects exist in Model at the time of creating the new database would...

  • RE: Need to return the result of dynamic execution to a variable

    Jeff Moden (4/8/2008)


    Matt Miller (4/8/2008)


    Jeff - which ones? sys.all_objects is context-sensitive, as is all_columns, all_views, syscomments, sysobjects. I haven't tested them all - but I have yet to...

  • RE: Need to return the result of dynamic execution to a variable

    Jeff - which ones? sys.all_objects is context-sensitive, as is all_columns, all_views, syscomments, sysobjects. I haven't tested them all - but I have yet to find one that shows...

  • RE: Reset Identity Specification

    Greg Charles (4/8/2008)


    No. In fact, you may find that you can't truncate a table that's being referenced by foreign keys.

    Correct - I didn't specify that very well earlier. ...

  • RE: Help for Maximum date from two different tables also....

    Jack Corbett (4/8/2008)


    Man Matt, am I glad you are around to clean up behind me!

    It's the least I could do... You already did the heavy lifting...:)

  • RE: Documentation of new database

    As some of us discovered recently - you can also check the default trace, or use the "schema changes" report available on right-click in SSMS on the server name.

  • RE: Help for Maximum date from two different tables also....

    marge0513 (4/8/2008)


    Thanks for responding Jack!

    I get a "missing keyword" error.

    SQL doesn't have a "TRIM" function, only RTRIM and LTRIM.

    So replace the last line with:

    T1.File_Desc = Ltrim(RTrim(cbFileDesc.text) )

  • RE: Reporting Services

    As part of the Reporting services config tool, you set up two virtual directories in IIS, one of which is the "report manager". That's where you have access to...

  • RE: Optimizing SQL Query

    Short of recreating your environment on 2005, or attaching that database to a 2005 server and upgrading it to compatibility level 90 , no, not that I know of. ...

  • RE: Variables in like statement

    Assuming @SearchString itself doesn't have a leading wildcard, you should be able to get something of a performance boost out of a covering index.

    something like

    create nonclustered index ix_MyTable on MyTable(name)...

Viewing 15 posts - 3,721 through 3,735 (of 6,486 total)