Forum Replies Created

Viewing 15 posts - 16,846 through 16,860 (of 22,210 total)

  • RE: Filtering WHERE on a field not in the DB

    You're trying to add a string to an INT field in the first query, which isn't possible. Your attempted fix is trying to convert the string to a number, again,...

  • RE: How to Rename a Field in SQL Server 2008 by script ?

    Except of course for the hard way, create a new table with the new structure, drop all the constraints on the old table, copy the data over, put the constraints...

  • RE: Are the posted questions getting worse?

    Oh, I made the mistake of following up on his thread... encouraging bad behavior. "Bad, Grant, Bad! Down! Stay!"

  • RE: Running out of space in tempdb

    It sounds like it was building out execution plans for all the recursions (guess). Instead of trying to get the execution plan by running the query in SSMS, try querying...

  • RE: how to schedule differential backup

    As long as you don't use the INIT clause, you can simply add differentials to the same backup file. That's not how I prefer to do it. I like the...

  • RE: fillfactor

    And fill factor is applicable when creating or rebuilding an index. Once an index is operation or it gets reorganized, fill factor is no longer taken into account.

  • RE: Not able to login into New instance

    Two instances on a machine do have two different ports. They can be dynamically assigned. You say you have TCPIP enabled. Do you have the SQL Server Browser service running?...

  • RE: Are the posted questions getting worse?

    john.arnott (7/28/2009)


    Steve Jones - Editor (7/28/2009)


    How about advanced pork chop aiming strategies for maximum developer damage?

    Just be careful of starting an internecine battle. There are more of we developers...

  • RE: NULL toggles off an index

    NULL values are not your friend when it comes to indexes. You will get a scan. Even forcing the use of the index through the hint will result in a...

  • RE: Are the posted questions getting worse?

    Luke L (7/28/2009)


    Steve Jones - Editor (7/28/2009)


    How about advanced pork chop aiming strategies for maximum developer damage?

    And of course a ppt preso won't quite cut it. Perhaps use Grant...

  • RE: Are the posted questions getting worse?

    Jack Corbett (7/28/2009)


    Do you guys meet monthly?

    The next time I'm in New England maybe I can schedule to be your area around a meeting time.

    Yep. Once a month. We'd love...

  • RE: How to find the start time of query in the database

    I just validated it, you can get the start time for a statement within a batch by querying sys.dm_exec_sessions. I posted a blog entry on it here[/url].

  • RE: Are the posted questions getting worse?

    Jeff Moden (7/28/2009)


    Grant Fritchey (7/28/2009)


    Jeff Moden (7/27/2009)


    Grant Fritchey (7/27/2009)


    Man, I'm clearly not doing things correctly. I've had to present twice a year for the last three years. I have the...

  • RE: sys.credentials does not exist. Why?

    There is no process for creating system catalog views. They are part of the normal running of the system and will be there after a successful install.

    Are you sure...

  • RE: suggest me a good solution.

    there is just no way to be sure. You have to know all the processes that access the system inside & out. For example, even if you monitor the system...

Viewing 15 posts - 16,846 through 16,860 (of 22,210 total)