Forum Replies Created

Viewing 15 posts - 871 through 885 (of 3,232 total)

  • RE: Performance tuning

    SQL Server will grab up all of the memory available to it. The performance of the database platform relies heavily on using the memory buffers for caching data, execution...

    John Rowan

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

  • RE: Allow only 1 combination for each value.

    Just curious, what is the business reason behind this? Why would you want to do this?

    John Rowan

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

  • RE: Using Select into #Temp vs. Create #Temp then Insert into #Temp

    I've always forced our guys to define all temp tables at the beginning of the stored procedure. Interleaving DDL with DML causes the SPs to recompile. I was...

    John Rowan

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

  • RE: multi user enviroment that needs to know when data changes

    There are many, many different ways to solve concurrency problems. You may consider looking into using a combination of Query Notifications and client code or using snapshot isolation. ...

    John Rowan

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

  • RE: Split the data into monthly

    Edwin-376531 (11/16/2009)


    Hello room,

    I have three year of data with time stamp (2009-07-01 03:55.07.678) on it.

    I wanted to split those data into a month per year.

    How can I do that? ...

    John Rowan

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

  • RE: Performance issues

    Another thing. Since this has to do with a slowdown during a batch run, I'd also suggest running a Windows Performance Monitor session during the batch to see what...

    John Rowan

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

  • RE: Performance issues

    I have used sql profiler and created indexes but no use ,and statistics are on.

    Now would it be helpful to post each table definitions used for the queries.

    A couple of...

    John Rowan

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

  • RE: Performance issues

    There is not enough information here to help you. If you want good help on this, please read this article and post the necessary information to help you.

    http://www.sqlservercentral.com/articles/SQLServerCentral/66909/

    Also, use...

    John Rowan

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

  • RE: Connect to Teradata from SSIS

    Yes, but the connection provider you choose may depend on the task type you want to use in SSIS. I use an ODBC connection when working with ExecuteSQL task...

    John Rowan

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

  • RE: Something Strange happend in SSIS....

    That may be a better option depending on how many rows your SP is dealing with. The main difference between table variables and temp tables is that temp tables...

    John Rowan

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

  • RE: Message task buries server

    I believe so. Were there any errors or abnormal messages around the last time your server hung?

    John Rowan

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

  • RE: How to automate SSIS package

    Have you checked into using Package Configurations? If not, search SSC for answers on that and you'll get a bunch of results. There are a few really good...

    John Rowan

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

  • RE: Something Strange happend in SSIS....

    Does it call a nested SP or return different result sets based off of logic in the SP?

    Can you post the SP code?

    John Rowan

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

  • RE: Message task buries server

    This has something to do with database mail. Can you check your database mail log and see if there are errors, especially near the times when you have the...

    John Rowan

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

  • RE: Message task buries server

    What do you get when you run this:

    SELECT * FROM sys.service_queues

    John Rowan

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

Viewing 15 posts - 871 through 885 (of 3,232 total)