Forum Replies Created

Viewing 15 posts - 871 through 885 (of 1,079 total)

  • RE: Find out database Permissions for my Windows Login in SQL 2005

    You are running SQL Server 2005?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Poor query performance post SQL 2008 upgrade

    If possible, add about 3 runs of IO stats as well...the more info you provide, the quicker and better assistance we can give.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    I would suggest you look into it, as you are queries ID rows, which I would assume is Unique, and I would assume the ID column has a primary key?

    Adding...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    I see what you mean.

    do you have indexes on those 2 tables?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    downloads a "test.zip" and contains xml's?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL server jobs

    Np, pleasure.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL server jobs

    If I recreate the jobs meant for replication, will it be affected??

    Yes, but DONT recreate the jobs, simply modify the existing schedules, by changing the time, and changing it back...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Find out database Permissions for my Windows Login in SQL 2005

    These might help...

    http://www.sql-server-performance.com/articles/dba/object_permission_scripts_p1.aspx

    and a quick one for per-instance-check:

    USE master;

    SELECT *

    FROM fn_my_permissions(NULL, 'SERVER');

    GO

    and another for per DB check:

    USE master;

    SELECT *

    FROM fn_my_permissions('master', 'DATABASE');

    GO

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL server jobs

    create a new simple job with a quick t-sql query, schedule it for 5 minutes ahead of now, check if it runs at the exact time.

    If it does, I'd say,...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    before starting the job, run the following:

    DBCC sqlperf(logspace)

    after starting the SSIS job, execute it again, every 10 seconds, and see if there is a significant change in the size of...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL server jobs

    run

    select GETDATE() and confirm you're SQL server returns the exact same date and time as you're Windows Server.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    I meant you're system TEMPDB, not the custom temp table..

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    interesting...

    by how much does you tempdb and log grow during this process?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    As a test, add a TOP 2270 in you're select statement, see if it works?

    If you confirm that you're data is in fact healty and normal, it's a bit strange...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Job Activity Monitor

    If you have installed just the SSMS Basic Tools (such as from Express Advanced, or by not selecting SSMS advanced during setup), you will not be able to use Job...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

Viewing 15 posts - 871 through 885 (of 1,079 total)