Forum Replies Created

Viewing 15 posts - 121 through 135 (of 187 total)

  • RE: Upgrade from 2000 to 2005

    Just to answer, yes that is what you need to do in order to migrate the packages from 2000 to 2005.

    However, depending on the types of packages that you have,...

  • RE: New Database Slow

    The old box (the monster) I would definitely want to know what the RAID configuration is set to for the drives that the SQL Server resides on and exactly how...

  • RE: SQL 2005 Reporting Services - Scheduling

    Data Driven Subscriptions are available in Developer and Enterprise, so I am sure that is your issue.

    http://www.microsoft.com/sqlserver/2005/en/us/reporting-services-features.aspx

    This is also true on 2008.

  • RE: New Database Slow

    I would be curious if you looked at the statistics io if they are the same on both machines. They should be but my thinking is that perhaps the...

  • RE: HierarchyID for Multiple Root Nodes

    It seems to me that you need a higher level here. There should only be a single "Root". In this case you are trying to...

  • RE: performance

    As said above, get rid of the cursor. It probably would also not hurt to look at indexing to see if you are 1. updating the clustering key hopefully...

  • RE: Rollback the job running very long time

    To add a little to this, if you do want check for long running jobs and it is a scheduled job within the SQL Agent, you can use the xp_sqlagent_enum_jobs...

  • RE: Help With Index Size

    Jonathan Kehayias (2/11/2009)


    MANU (2/11/2009)


    You will get it from sys.dm_db_partition_stats

    select * from sys.dm_db_partition_stats

    where object_id='Enter the ID here'

    and Index_id='Enter the ID here'

    MJ

    Look at the output of...

  • RE: Rebuilding Indexes online in MS SQL 2005 portion of the database

    You can definitely do this and there are invariably dozens of different possible solutions I am guessing.

    I would probably create a table structure populated with the tables that you think...

  • RE: Get latitude back from geography type?

    When I was first doing this a few weeks ago I was struggling finding it on BOL as well until I did a key word search on Latitude, which found...

  • RE: Scheduling Jobs

    You would absolutely have to create a job step on Server A to make the call.

    In terms of Server B as long as you have a Schedule set up with...

  • RE: Scheduling Jobs

    You could create a linked server between Server A and Server B and then run the

    EXEC [ServerB].msdb.dbo.sp_update_jobschedule

    @job_name = 'JobName',

    @name = 'ScheduleName',

    @enabled = 1,

    @active_start_date = YYYYMMDD,

    @active_start_time...

  • RE: How to become sql server dba

    Jonathan Kehayias (2/10/2009)


    If you want to be a DBA and you want really good, worth their weight in gold books that apply to being a DBA. Goto Amazon.com and...

  • RE: Clustering??????

    Mirroring is a great option, but for many shops (like mine) the extra SAN/Disk space is FAR more costly than having an additional server.

    Couple that with the fact that you...

  • RE: Memory on SQl Server Box

    You essentially are allowing SQL to take up 18.5 GB out of 20 total and SQL is obviously happy to do so. That is not necessarily bad, but...

Viewing 15 posts - 121 through 135 (of 187 total)