SQL Server Maintenance Plan Issue

SQL Server Version:
Microsoft SQL Server 2005 - 9.00.5000.00 (Intel X86) 
Dec 10 2010 10:56:29 
Copyright (c) 1988-2005 Microsoft Corporation 
Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 2)
Issue : Maintenance Plan - DB backup plan & TRN Log backup plan skipped / some times not deleting the old backup files.
Error : Failed to retrieve date for this request (Microsoft.SqlServer.SmoEnum)
Additional Informaiton
An exception occurred while executing a Transact-SQL statement or batch.
(Microsoft.SqlServer.ConnectionInfo)
A Server error occurred on the current command.
The results, if any should be discarded (Microsoft Sql Server)
Any experts can help me to resolve this issue.
Thanks
drmrpush
MRVSFLY

Hello,
Same issue reported here:
https://social.msdn.microsoft.com/Forums/sqlserver/en-US/601fd83c-c49f-4bf8-b69d-95431197652d/maintenance-plan-is-not-opening-on-sql-server-2005-sp2?forum=sqlkjmanageability
Please check solution on :
https://social.msdn.microsoft.com/Forums/sqlserver/en-US/3e53ba8b-ea23-4629-98db-43c80ba9888e/cannot-save-maintenance-plans?forum=sqltools
This problem occurs if some of the stored procedures while installing SP2 has not been applied successfully. So manually run the script below and it may resolve
your issue. It resolved ours and we went throught exact same process of re-installing several times.
                1)     
 First go to the folder Install . The default location is this = “C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install “ .
Please post back still your issue not resolves.
2)     
Then in this folder find this “sysdbupg.sql” .
3)     
Please open this script with a nodepad.
4)     
Then copy the
whole script and then paste it in the Query window of the Management studio.
5)     
Then execute this script.
6)     
Once this script has been successfully executed, The issue should be resolved.
Regards, Pradyothana DP. Please Mark This As Answer if it solved your issue. Please Mark This As Helpful if it helps to solve your issue. ========================================================== http://www.dbainhouse.blogspot.in/

Similar Messages

  • SQL Server Maintenance Plan does not run DEL command in .BAT

    Hello,
    I have a T-SQL Statement task in my Maintenance Plan that runs a .BAT file and it runs OK when manually executed.  The .BAT file has a del d:\backups\*.* command in it. However, when the plan runs automatically at a scheduled time, the .BAT file does
    not delete files.  Could this be a permissions issue?
    Paul

    Hi Paul,
    This looks like a permission issue.  Make sure the account SQL instance is running has delete permissions on the folder from which you are trying to delete and also make sure the account has execute permission on that batch file.
    Thanks,
    Bhanu

  • Maintenance Plan Issue in SQL 2005

    Hi All,
    In SQL 2005 server maintenance plans are not active. If we execute maintenance plan manually, it will show as success but actually it is not running and history also not recording.
    Server Details:
    Product version: 9.00.1399.06
    Product Level: RTM
    Product Edition: Developer Edition
    OS: Windows server 2003 with SP2, Enterprise Edition
    We are able to create maintenance plans, also SQL agent jobs are running fine.
    But maintenance plans are not working.
    Can anyone please suggest, what will be the problem.
    Thanks in advance.

    Hi Ashwin,
    Thanks for your immediate reply.
    Sure will apply SP4 asap.
    Maintenance plan created to take backups, when I right click and execute maintenance plan, it will show as success but backups are not happening, also in view history nothing is recording.
    Actually no maintenance plan is working on this server.
    If I modify any maintenance plan while saving modifications, it is showing bellow message. But changes are reflecting in maintenance plan
    Message:
    Guid should contain 32 digits with 4 dashes ( xxxxxxxx-xxxx-xxxx-xxxxxxxxxxxx)
    Ex: Right clicked on backup maintenance plan and selected modify.
    then added one more database name in backup list and while saving changes, we are getting above message.

  • MS SQL Server Maintenance

    My client has MS SQL database administrators that are highly recommending doing a periodic reindex as they are seeing a high level of fragmentation. I am unable to find any documents on proper MS SQL Server maintenance from Cisco. In the absence of recommendations from "the vendor" (as the DBA puts it) should we apply generally accepted maitenance procedures for MS SQL? Should we set our log files to Autogrow as they are currently set to none?
    Thanks,
    Mark

    Hi,
    since MS SQL Server is not used in UCCX anymore, I assume you are talking about Cisco ICM.
    It has already a system implemented that periodically checks the size of tables and removes old data according to the schedule.
    I don't really see the meaning of index "defragmentation", as data is written sequentially to the historical tables. You can rebuild the index of the configuration tables, if, for instance, agents are added and removed frequently.
    G.

  • SQL Server 2008 Plan Cache maintenance

    Hi,
    I have a question, please help/suggest me.
    I have a production SQL Server 2008 where there are 4 significant stored procedures running in every 15 seconds(Borwser auto refresh) from different users(100+ users connect to site from diff locations)
    Sometimes there is no data coming from these stored procedures and application is timing out 
    So we are running follwoing queries to resolve the issue in productuion server
    DBCC DROPCLEANBUFFERS, DBCC FREEPROCCACHE
    Now we are planing to keep this as part of weekend maintenance activity, so please advise what are the parameters we have to check and what is best practices to clear cache?
    Thanks,
    Ali

    You can execute sp_recompile to recompile an stored procedure, instead of clear the whole plan cache. sp_recompile does not cause an stored procedure to be recompiled each time it executes. It recompiles just one time, when you execute
    sp_recompile. 
    If you want, you can write a SQL Server Agent Job that calls sp_recompile for each of these four stored procedures.
    Cleaning the buffer cache will not improve performance in any case, It maintains a cache of data, it has nothing to do with plan cache.
    You should investigate why these stored procedure get slow. May be, statistics are stale. You should update statistics and rebuild indexes. It also may invalidate execution plans
    EntityLite: A Lightweight, Database First, Micro ORM

  • SQL Server Maintenance Task

    I have configured a maintenance task that consists of only two T-SQL Statements, one that executes after completion of the other, however it fails and no history is generated. Please advise how I should begin troubleshooting the issue with the maintenance
    task.

    what version\edition of sql are you using? how are you executing your maintenance plans ?? through sql job or straight from maintenance plan. 
    make sure your sql server agent is running. you can get the error log from two places 1. maintenance history 2. job history. these two are integrated..
    try the queries below...
    if the plan was deleted and recreated, the previous history is gone. 
    --maintenance plan history
    use msdb
    go
    select case when d.Succeeded=1 then 'Success' when d.succeeded=0 then 'Failed' End as Result,
    name as [PlanName],b.subplan_name,D.line1,D.line2,D.line3,D.line4,D.line5,D.start_time,D.end_time,D.command,d.Succeeded
    from sysmaintplan_plans a inner join sysmaintplan_subplans b on a.id=b.plan_id
    inner join sysmaintplan_log c on c.plan_id=b.plan_id and c.Subplan_id=b.subplan_id
    inner join sysmaintplan_logdetail d on d.task_detail_id=c.task_detail_id
    --where a.Name='yourmaintenanceplanname'
    ORDER BY D.start_time asc
    GO
    --maintenance plan history from jobs
    select case when b.step_id=0 then 'Final Job Outcome' else 'Job Step '+cast(b.step_id as varchar(20))+':'+b.step_name End as [JobOutCome],d.name as [JobName],
    c.name as [MaintenancePlan],a.subplan_name as [SubPlan_Name],run_date,Run_time,Run_duration,message
    from dbo.sysmaintplan_subplans a inner join
    sysjobhistory b on a.job_id=b.job_id inner join
    sysmaintplan_plans c on c.id=a.plan_id
    inner join msdb.dbo.sysjobs d on d.job_id=b.job_id
    --where c.name='yourmaintenanceplanname'
    order by b.instance_id asc,step_id asc
    Hope it Helps!!

  • SQL Server Query Plan Generation take longer

    Dear all,
    We are dealing with a wired issue where queries on there first execution take approx 1 min to 2 mins to execute and later execution completes in less than a second,Can you please help us understand why sql server is taking longer time to generated the query
    plan
    Below is the result of files stats
    Mohd Sufian www.sqlship.wordpress.com Please mark the post as Answered if it helped.

    SYS.DM_OS_MEMORY_CLERKS
    MEMORYCLERK_SQLOPTIMIZER 136 912
    CACHESTORE_PHDR 1864 0
    CACHESTORE_XMLDBTYPE 8 0
    CACHESTORE_EVENTS 16 0
    USERSTORE_OBJPERM 824 0
    USERSTORE_TOKENPERM 840 968
    MEMORYCLERK_SQLSTORENG 2736 4312
    CACHESTORE_FULLTEXTSTOPLIST 32 0
    MEMORYCLERK_XE 64 168
    CACHESTORE_XPROC 72 0
    OBJECTSTORE_SNI_PACKET 3336 112
    CACHESTORE_BROKERRSB 8 0
    OBJECTSTORE_SERVICE_BROKER 424 0
    MEMORYCLERK_SQLSERVICEBROKERTRANSPORT 48 0
    MEMORYCLERK_XE_BUFFER 0 0
    MEMORYCLERK_SQLGENERAL 1608 4144
    CACHESTORE_XMLDBATTRIBUTE 8 0
    MEMORYCLERK_SQLHTTP 8 0
    CACHESTORE_STACKFRAMES 0 16
    MEMORYCLERK_SQLCONNECTIONPOOL 2440 0
    MEMORYCLERK_SQLSERVICEBROKER 152 544
    CACHESTORE_NOTIF 16 0
    CACHESTORE_XMLDBELEMENT 8 0
    OBJECTSTORE_LOCK_MANAGER 24 0
    MEMORYCLERK_SQLBUFFERPOOL 0 1688
    MEMORYCLERK_SQLSOAP 0 0
    MEMORYCLERK_TRACE_EVTNOTIF 0 0
    CACHESTORE_OBJCP 6576 512
    CACHESTORE_CONVPRI 64 0
    MEMORYCLERK_QSRANGEPREFETCH 0 0
    CACHESTORE_BROKERREADONLY 80 0
    MEMORYCLERK_SQLCLRASSEMBLY 0 0
    MEMORYCLERK_SOSNODE 8 16320
    MEMORYCLERK_SQLQUERYPLAN 0 0
    OBJECTSTORE_SECAUDIT_EVENT_BUFFER 16 0
    MEMORYCLERK_BHF 0 0
    CACHESTORE_SQLCP 22680 3544
    OBJECTSTORE_LBSS 96 192
    CACHESTORE_SYSTEMROWSET 1832 0
    MEMORYCLERK_FULLTEXT 24 0
    USERSTORE_SCHEMAMGR 2632 328
    MEMORYCLERK_SQLQUERYCOMPILE 0 0
    CACHESTORE_TEMPTABLES 16 0
    CACHESTORE_BROKERTBLACS 200 0
    CACHESTORE_BROKERTO 8 0
    CACHESTORE_BROKERKEK 8 0
    MEMORYCLERK_SQLXML 0 0
    USERSTORE_SXC 64 0
    MEMORYCLERK_SNI 240 32
    MEMORYCLERK_FULLTEXT_SHMEM 0 0
    CACHESTORE_BROKERUSERCERTLOOKUP 8 0
    CACHESTORE_BROKERDSH 8 0
    MEMORYCLERK_SQLSOAPSESSIONSTORE 0 0
    MEMORYCLERK_SQLQERESERVATIONS 0 0
    MEMORYCLERK_HOST 16 0
    MEMORYCLERK_SQLCLR 8 0
    MEMORYCLERK_SQLXP 16 0
    USERSTORE_DBMETADATA 1912 0
    MEMORYCLERK_SQLUTILITIES 112 0
    CACHESTORE_VIEWDEFINITIONS 16 0
    MEMORYCLERK_SQLQUERYEXEC 80 0
    sys.dm_os_performance_counters
    object_name counter_name cntr_value
    SQLServer:Buffer Manager Buffer cache hit ratio 556
    SQLServer:Buffer Manager Buffer cache hit ratio base 612
    SQLServer:Buffer Manager Page lookups/sec 4054066
    SQLServer:Buffer Manager Free list stalls/sec 0
    SQLServer:Buffer Manager Free pages 483
    SQLServer:Buffer Manager Total pages 503088
    SQLServer:Buffer Manager Target pages 1710080
    SQLServer:Buffer Manager Database pages 494479
    SQLServer:Buffer Manager Reserved pages 0
    SQLServer:Buffer Manager Stolen pages 8126
    SQLServer:Buffer Manager Lazy writes/sec 0
    SQLServer:Buffer Manager Readahead pages/sec 378700
    SQLServer:Buffer Manager Page reads/sec 493985
    SQLServer:Buffer Manager Page writes/sec 2421
    SQLServer:Buffer Manager Checkpoint pages/sec 0
    SQLServer:Buffer Manager AWE lookup maps/sec 0
    SQLServer:Buffer Manager AWE stolen maps/sec 0
    SQLServer:Buffer Manager AWE write maps/sec 0
    SQLServer:Buffer Manager AWE unmap calls/sec 0
    SQLServer:Buffer Manager AWE unmap pages/sec 0
    SQLServer:Buffer Manager Page life expectancy 262
    SQLServer:Cursor Manager by Type Cache Hit Ratio 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio Base 0
    SQLServer:Cursor Manager by Type Cached Cursor Counts 0
    SQLServer:Cursor Manager by Type Cursor Cache Use Counts/sec 0
    SQLServer:Cursor Manager by Type Cursor Requests/sec 0
    SQLServer:Cursor Manager by Type Active cursors 0
    SQLServer:Cursor Manager by Type Cursor memory usage 0
    SQLServer:Cursor Manager by Type Cursor worktable usage 0
    SQLServer:Cursor Manager by Type Number of active cursor plans 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio Base 0
    SQLServer:Cursor Manager by Type Cached Cursor Counts 0
    SQLServer:Cursor Manager by Type Cursor Cache Use Counts/sec 0
    SQLServer:Cursor Manager by Type Cursor Requests/sec 0
    SQLServer:Cursor Manager by Type Active cursors 0
    SQLServer:Cursor Manager by Type Cursor memory usage 0
    SQLServer:Cursor Manager by Type Cursor worktable usage 0
    SQLServer:Cursor Manager by Type Number of active cursor plans 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio Base 0
    SQLServer:Cursor Manager by Type Cached Cursor Counts 0
    SQLServer:Cursor Manager by Type Cursor Cache Use Counts/sec 0
    SQLServer:Cursor Manager by Type Cursor Requests/sec 0
    SQLServer:Cursor Manager by Type Active cursors 0
    SQLServer:Cursor Manager by Type Cursor memory usage 0
    SQLServer:Cursor Manager by Type Cursor worktable usage 0
    SQLServer:Cursor Manager by Type Number of active cursor plans 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio 0
    SQLServer:Cursor Manager by Type Cache Hit Ratio Base 0
    SQLServer:Cursor Manager by Type Cached Cursor Counts 0
    SQLServer:Cursor Manager by Type Cursor Cache Use Counts/sec 0
    SQLServer:Cursor Manager by Type Cursor Requests/sec 0
    SQLServer:Cursor Manager by Type Active cursors 0
    SQLServer:Cursor Manager by Type Cursor memory usage 0
    SQLServer:Cursor Manager by Type Cursor worktable usage 0
    SQLServer:Cursor Manager by Type Number of active cursor plans 0
    SQLServer:Cursor Manager Total Cursor conversion rate 0
    SQLServer:Cursor Manager Total Async population count 0
    SQLServer:Cursor Manager Total Cursor flushes 0
    SQLServer:Memory Manager Connection Memory (KB) 2864
    SQLServer:Memory Manager Granted Workspace Memory (KB) 0
    SQLServer:Memory Manager Lock Memory (KB) 7944
    SQLServer:Memory Manager Lock Blocks Allocated 40550
    SQLServer:Memory Manager Lock Owner Blocks Allocated 43550
    SQLServer:Memory Manager Lock Blocks 10003
    SQLServer:Memory Manager Lock Owner Blocks 10133
    SQLServer:Memory Manager Maximum Workspace Memory (KB) 10280520
    SQLServer:Memory Manager Memory Grants Outstanding 0
    SQLServer:Memory Manager Memory Grants Pending 0
    SQLServer:Memory Manager Optimizer Memory (KB) 1048
    SQLServer:Memory Manager SQL Cache Memory (KB) 2080
    SQLServer:Memory Manager Target Server Memory (KB) 13680640
    SQLServer:Memory Manager Total Server Memory (KB) 4024704
    Mohd Sufian www.sqlship.wordpress.com Please mark the post as Answered if it helped.

  • SQL Server maintenance

    Hi experts,
    We are running BPC for MS with SQL 2008. Our data growth is very modest (less than 100 MB per month).
    We are currently using the functionality in BPC to do the maintenance (Optimization etc). Given our low volumes, do we need to order additional server maintenance from our IT vendor to directly in SQL Server?
    What additional maintenance could they do that would be benificial to us?
    Thanks,
    Sam

    Hi Sam,
    BPC maintenance is specific for BPC appsets and is trying to provide you good performances for appset.
    For good performances of SQL Server database you really have to create a maintenance plan for SQL Server.
    You can read more about Maintenance Pllan into Microsoft side.
    Usually maintenance plan is corelated with  a backup strategy.
    Because we are speaking about a small amount of data in your case I suggest:
    1. Keep database in simple mode
    2. Full Backup every day after the full optimize of SAP BPC appset and also
    3. Shrink of transaction log after the backup
    4. Update statistics of your appset
    Once per week instead of full optimize for SAP BPC you have to perform full optimize with compress.
    Regards
    Sorin Radulescu
    Edited by: Sorin Radulescu on Sep 18, 2009 8:32 AM

  • Oracle to SQL server switch mapping issue?

    Hi All,
    We are switching the DB from Oracle to SQL. As a result our existing mapping seems to create issue while we are trying to INSERT data.
    We changed some of the date setting as and also the hasQuot to Yes so when it goes to the SQL server it runs as CONVERT(datetime,'currentDate/time', 120)
    Before doing this change we were getting the error
    com.microsoft.sqlserver.jdbc.SQLServerException: Conversion failed when converting date and/or time from character string.
    Now we are getting the error
    com.microsoft.sqlserver.jdbc.SQLServerException: String or binary data would be truncated
    Also other date fields are sent with '' like '20150427'
    Additionally fields which are Characters are also sent in '' like 'Shaibayan' but when these fields are coming empty at that time the Audit log SQL INSERT shows them as ''' i.e. 3 single quotes instead of '' which we should get.
    Thanks,
    Shaibayan

    ORA-28545:     error diagnosed by Net8 when connecting to an agent
    Cause:      An attempt to call an external procedure or to issue SQL to a non-Oracle system on a Heterogeneous Services database link failed at connection initialization. The error diagnosed by Net8 NCR software is reported separately.
    Action:      Refer to the Net8 NCRO error message. If this isn't clear, check connection administrative setup in tnsnames.ora and listener.ora for the service associated with the Heterogeneous Services database link being used, or with 'extproc_connection_data' for an external procedure call.
    And a brief search of Metalink gave me a load of forum threads which discuss the same issue.
    Edited by: Satish Kandi on Apr 29, 2009 12:19 PM

  • Microsoft sql server 2008 installation issue

    Iam new to microsoft sql server.i have installed microsoft sql sever.
    and if i go through following
    All programs-->Microsoft SQL Server 2008-->Configuration tools-->Sql server configuration manager-->Sql server services
    --> it is showing as the remote procedure call failed (0x800706be)
    My pc is windows 7 32 bit .to make it run wt is need to be done................plz help.

    Hi
    Please Refer
    Balmukund's Link.. Service Pack Upgrade Should fix your Issue,
    check
    http://thesqldude.com/2012/12/05/sql-server-2012-configuration-manager-wmi-error-remote-procedure-call-failed-0x800706be/
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle
    1 hour 13 minutes ago
    Reply
    |
    Quote
    |
    Propose as answer
    |
    Report as abuse
    Balmukund
    Microsoft
    (MSFT)
    Nag Pal MCTS/MCITP (SQL Server 2005/2008) :: Please Mark Answer/vote if it is helpful ::

  • SQL Server 2012 Installation Issue

    Hi
    Not sure if this is the correct forum for this but I'll post anyway.
    Ialready have sql 2005 and 2008r2 installed on my local machine running windows 7, 64 bit.
    I recently tried to install sql 2012 but ran into a problem that I'm stumped by. The installation runs fine, no errors or issues. When I start 2012 the SS Management studio window appears but the usual splash screen in the middle of the window asking to
    to connect to a server does not. If I try hitting any of the meny items at the top of the screen the SSMS window just hangs.
    I have service pack 1 installed also. I uninstalled and tried again but still no luck. my SQL 2005 and 2008r2 version are still fine and run as normal. I also tried installing sql 2014 to see if that would work but I had the same issue as with 2012.
    Any ideas anyone?
    thanks in advance
    

    Hi,
    Both SQL Server 2012 and SQL Server 2014 require .NET Framework 4.0 which does not required by the previous versions.
    Make sure that . NET Framework 4.0 has been successfully installed on your system before you install SQL Server
    Hardware and Software Requirements for Installing SQL Server 2014
    http://msdn.microsoft.com/en-us/library/ms143506.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Database updates statistics maintenance plan issue.

    Hi team,
    We are configured one job through maintenance plan that job name is “database update statistics” and database size is 280 Gb, this job executing 13 to 15 hours but job was not finished  still it’s continually running.
    This same job I am running through below script it’s executing within 2 hours.
    Use database
    Go
    Exec sp_updatestats
    What is the main problem if this maintenance plan.
    Note: on this server no jobs and no traffic, only abc_update subpaln1 Job.

    Hello,
    Updating stats for whole database which is 280 G will always result in problem.It is better to run update statistics for tables and indexes which are changed frequently.
    Now to your question few points which sp_Updatestas list in BOL
    http://technet.microsoft.com/en-us/library/ms173804.aspx
    sp_updatestats updates statistics on disabled nonclustered indexes and does not update statistics on disabled clustered indexes.
    sp_updatestats updates only the statistics that require updating based on the rowmodctr information in the sys.sysindexes catalog view, thus avoiding unnecessary updates of statistics
    on unchanged rows.
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • SQL Server 2008R2 memory issues

    Hi Experts.
    I have SQL Server 2008R2 installation,We allocated 102400MB(100GB) Memory   out of 128GB Installed.
    But Task manager is showing  SQL Servr using 104 GB.Please some body let us know why SQL Server uisng more memory more than we allocated.
    Please advise next step or recommendations if any 
    OS :Windows 2008R2 64bit.
    DB:SQL Server 2008R2 64bit.
    Thanks in advance.
    Regards,

    But Task manager is showing  SQL Servr using 104 GB.Please some body let us know why SQL Server uisng more memory more than we allocated.
    You should not refer to task manager for SQL server memory consumption. Its windows tool it always wont show you correct value.
    Please use below query to SQL Server memory utilization
    select
    (physical_memory_in_use_kb/1024)Memory_usedby_Sqlserver_MB,
    (locked_page_allocations_kb/1024 )Locked_pages_used_Sqlserver_MB,
    (total_virtual_address_space_kb/1024 )Total_VAS_in_MB
    from sys. dm_os_process_memory
    100 G limit is put on SQL Server buffer pool. SQL Server can still use memory more than 100 G because few memory allocations for objects like, XML,SQLCLR, Linked server, backup , database mail etc are allocated directly by windows and sys.dm_os_process_memory
    does not tracks it. So just relax this is normal
    Task manager only show Working set.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Migration from SQL Server to Oracle issue

    Hi,
    While trying to migrate SQL Server to Oracle via Standard Migration method, I got stuck at the point where it says.....
    To perform online capture, right-click the connection name in the Connections navigator and select Capture database-type (for example, Capture MySQL, Capture Microsoft Access, Capture Microsoft SQL Server, or Capture Sybase Adaptive Server).
    The problem is that, I do not see this menu Capture Microsoft SQL Server. Looks like this is a bug SQL Developer 3, which does not shows option for Capture on right clicking the non-oracle database connection. In earlier release of SQL Developer 2.1.1, I can see the option of Catture...
    Thanks,
    Gyan

    Gyan,
    You are correct. The online help screen says -
    <<<
    Online Capture
    To perform an online capture of the source database, you can have the capture performed automatically as part of the Quick Migrate option, or you can have it performed as a separate operation by right-clicking the connection name in the Connections navigator and selecting Capture product-name (for example, Capture MySQL, Capture Microsoft Access, Capture Microsoft SQL Server, or Capture Sybase Adaptive Server).
    >>>
    but this option does not show up.
    I did some testing and was able to make the capture by following these steps -
    - right click on the SQL*Server database in the Connections panel
    - choose 'Migrate to Oracle'
    - follow the menus until you get to 'Capture' screen where you should have the SQL*Server database to be migrated in the 'Selected Databases' panel
    - then choose 'Finish' from the options at bottom of the screen.
    - you should then have the capture scripts in the directory chosen earlier in the process.
    Regards,
    Mike

  • Data Modeler EA1:  Importing SQL Server Data Dictionary issue

    I am using the Data Dictionary Import Wizard to import the Schema of a SQL Server 2005 database (JDBC connection has "SQL Server 2005" as the Type) into the Oracle SQL Developer Data Modeler. In step 4 of the import, under the "Import to:" section, there is only SQL Server 2000 available in the drop down.

    Database Name: Microsoft SQL Server
    Database Version 10.00.2531
    I assumed that a SQL Server 2008 DB would be handled as a SQL Server 2005 DB (that is until 2008 is supported). Currently the db is not using any SQL Server 2008 specific features.
    In Oracle Developer Data Model 2, the tables with xml data type would not import. This time, those tables did import.

Maybe you are looking for

  • UK flex Holidays/PTO paid benefits

    Has anyone done worked with sap Benefits on configuring where EE can sell and buy certain number of the days? requirement is An employee with 25 days holiday will be eligible now for 33 days holiday (25 + 8). they can buy up to a total of 40 days off

  • Need to hide tabs in CRM 5.0 SAP GUI for a business transaction

    Hi all,    I've created a custom complaint transaction in CRM 5.0, and I need to hide some tabs and fields when I create it or edit it via SAP GUI. I've searched through the help, and I figured out that probably I have to use transaction CRMV_SSC, bu

  • How can i see what the camera sees? good manual?

    without using any app or program or anything. just a visiual of the camera view? is there any good manual for the Macbook pro?

  • Resource related  billing -reg

    hi My bunsiness process is like 1.Quotation Creation, 2.Sales Order creation with ref to Quotation, 3. Resource related billing( A Debit memo request is creating with ref to Sales Order) 4.Debit Memo creation with ref to debit memeo request. In above

  • Problem with hotmail calendar display

    Problems with hotmail calendar display.