Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 3,232 total)

  • RE: Can I write to DOS window from a stored procedure?

    Look up xp_cmdshell in BOL. Be cautious how you implement this as it has security issues.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL in ASP page

    Well, their perception is that it is the same. They could be doing a great job at parameterization and getting the SQL optimizer to reuse the query plans similar...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Help with Cursor

    You'll get better help if you post your table DDL along with some sample data and your desired results.

    http://www.sqlservercentral.com/articles/Best+Practices/61537/

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Profiler kills performance

    Make sure you are NOT running profiler on your database server. Run it on a workstation that has SQL Server client tools installed on it. Have you configured...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Accidently Agile

    Thanks for the details Steve. I will not have time to go through your linked material until next week, but I will read it and then re-read your bullet...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Restore Issue.

    I cringe at using EM for backup/restore operations. I always use T-SQL. I have found that many posters have a very low comfort level with using T-SQL for...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Accidently Agile

    Steve,

    That is why David wrote the article; so we can have a professional debate on the topic. I for one don't know much about it but I'm being...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Accidently Agile

    Great read David. Your article offers me some comfort for a huge project that I have just been allocated to. Your garage building analogy hits the nail on...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Combing two dates into on column

    I think it is used as a general term Jeff. In my previous job, I was an application developer for about 6 years. I showed some savvy with...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Combing two dates into on column

    Ah. So you are only going to use this in a SELECT to diplay the values. I had thought that you were going to create a new column...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Combing two dates into on column

    What are you trying to accomplish? Storing dates in any other form than a datetime column causes problems down the road.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How do I add quarter to my dates table

    Since the data is already in the table, it seems a bit much to store it another time but in a different format. How about using a view or...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Restore Issue.

    Also, bracket your database name in the RESTORE DATABASE statement. SQL Server does not like your database name. Use [015] instead.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Restore Issue.

    Darren,

    SQL Server reads the original file locations from the header in the backup file and it attempts to restore the database to it's original location. What SQL Server...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: back up

    Look up 'backing up databases' in books online. You can either run the BACKUP DATABASE statement, or use the Management Studios GUI by right-clicking on the DB and going...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,906 through 1,920 (of 3,232 total)