GG for Sqlserver 2012

Hi all,
I want to replicate tables from Sqlserver 2012 to Oracle 11g. Is this version supported?
Where can I find related docs for this activity?
Thanks a lot,
zxy

Thanks Marie,
Supposing I have a big table of Images/pictured LOB from Sqlserver( 1 million rows), and I want to migrate it to Oracle.
I read in the docs that there is an "initial load" process in goldengate.  So does this mean GG can handle this bulk load of 1 millions lob images table?
I just want to migrate the table. as another alternative/variation  just like doing expdp and impdp from oracle to oracle database, or extract to csv  and  sqlloading.
(Since I can not do it with sqlserver-to-oracle)
Thanks

Similar Messages

  • Invalid object name for Next value from sequence  using sqlserver 2012

    Select SequenceName.nextVal into lint from dual ;
    Invalid object name error message is coming when using sqlserver 2012
    Please help

    Hello,
    Create the sequence and a stored procedure which returns the sequence as follows:
    CREATE SEQUENCE mySequence_tinyint AS tinyint
    GO
    CREATE PROCEDURE Central_CreateSequence
       @NextID BIGINT OUTPUT
    AS
    BEGIN
       SET NOCOUNT ON;
       SELECT @NextID = NEXT VALUE FOR mySequence_tinyint;
    END
    GO
    In PowerBuilder, run this script:
    long ll = -10
    DECLARE proc PROCEDURE FOR Central_CreateSequence @NextID = :ll OUTPUT;      
    EXECUTE proc;
    FETCH proc INTO :ll;
    CLOSE proc;
    IF SQLCA.SQLcode <> 0 THEN
    MessageBox("error", SQLCA.sqlerrtext)
    END IF
    MessageBox("", ll)
    I know there can be other ways to return the next value of the sequence...
    HTH
    Jacob

  • SharePoint 2010 Excel Services with SQLserver 2012 cubes

    I have two tier sharepoint 2010 enterprise setup
    1)wfe  and app server
    2) sqlserver
    I also have a sqlserver 2012 which hosts all our BI cubes .
    is it possible to connect excel (office 2010)  to sql 2012 BI and save that in my sharepoint 2010 server  under shared documents and expect it to refresh when aall authenticated users hit " refresh all connections"
    It is not able to hit refresh . I get a " unable to refresh data for  a data connection in this notebook" the following connections fail to refresh.
    Interesting when I do the same this using sql server 2008 r2 BI , everything works fine

    Hi,
    According to your description, my understanding is that the SharePoint 2010 Excel Service cannot work with SQL Server 2012.
    Did you install Service Pack 1 for SharePoint 2010?
    SharePoint 2010 Service Pack 1 is required for SQL Server 2012 PowerPivot for SharePoint features.
    Please check if the Service Pack 1 is installed for SharePoint 2010. If not, please download it from the link below and install it:
    http://www.microsoft.com/en-hk/download/details.aspx?id=26623
    More references:
    http://msdn.microsoft.com/en-us/library/ee210708(v=sql.110).aspx
    http://msdn.microsoft.com/en-us/library/6d61be91-0396-443c-a7f4-02dcf973775e(v=sql.110)
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Configuring Reporting services for SCCM 2012

    Hi,
    I just finish create SQL reporting services ( configure Database, report manager URL) in SQL 2008 R2 for SCCM 2012. When I open the Report option in SCCM console (Monitoring --> Report), no report listed there and then I try to add in Reporting service
    point for it, but get an error message
    "There is a problem connecting to the specific reporting server. Please check the connection and make sure SQL reporting service is running on the specified server"
    I manually browse to http://sqlserver/reportserver or
    http://sqlserver/reports , that is no any folder exist there (I assume when I configure reporting service it will automatic create a folder for it with all report inside?). Anyone can guide me on how to solve this issue?
    Regards,

    Hi,
    hi ,
    I am new to SCCM 2012 group and i have knowledge on sccm2007. i want to discuss some issue what i have with SCCM2012 installtion. The issue is my machine got rebooted while installing sccm 2012 SP1.i have already installed all the prerequisites for SCCM2012.i
    am installing sccm2012 on Hyper-V machine.
    Please see my system configuration below:
    DomainController(2008R2 server) : 512MB RAM, AD things and DNS ,DHCP has installed on it.
    System center server(2008R2) : 1028MB RAM , Sql 2008 server installed on it.
    i tried to install it many times but still i got the same issue.
    Could anybody please help me with this ?
    This is a new question. So please ask this question on a new thread in this forum.
    Thank you.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SSIS Connection Manager: MSOLAP100 where is the one for SSAS 2012 ?

    I have an SSIS project under SSDT, that should process a SSAS 2012 Cube, when I setup the connection, the SSIS Connection Manager gives me only MSOLAP100 as a possible connection manager type. From my understanding this is the one for SQL 2008 R2. Where
    is the one for SSAS 2012 and how can I enable it ?
    I feel this is a bug in SSDT:
    I used another UI dialog and could create a new connection like this:
    Still it says ConnectionManagerType MSOLAP100, however in the connection string I now have Provider=MSOLAP.5, this seems to be another SSDT bug.

    If this issue can be reproduced in multiple machines, then you can you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is released in the next release of service pack or product.

  • Problem Copy big Table sqlserver 2012

    Hi Friends,
    Its 4th day I am trying to copy  table having 7 million record with text field  into same database (sqlserver 2012)  , but fail although I am using blade server with 256 Gb memory and multiprocessor. My query as followed
    select * into newtable from  maintable where flag=0 
    (Just while ago   I  canceled above statement (query) which was working since last 14 hours on server)
    Please help mean how I can copy.
    thank you.
    regards,
    asad
    asad

    Hi Friends,
    Its 4th day I am trying to copy  table having 7 million record with text field  into same database (sqlserver 2012)  , but fail although I am using blade server with 256 Gb memory and multiprocessor. My query as followed
    select * into newtable from  maintable where flag=0 
    (Just while ago   I  canceled above statement (query) which was working since last 14 hours on server)
    Please help mean how I can copy.
    Is the data going to change while you are running select. If it is not going to change and its history data and its just there for movement you can use NOLOCK hint like
    select * into newtable from maintable with (NOLOCK) where flag=0
    Please make sure
    NOLOCK query hint alos takes Schema stability lock and can be blocked if table from wher yo are selecting data is locked by alter table command. it also causes dirty reads and unexpected result so use at your own risk.
    You should consider methods suggested by Saeid
    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 Articles

  • Microsoft sqlserver 2012 License and Edition

    Folks,
    I am planning to use sqlserver 2012 Enterprise edition software and  i am in the process of procuring the
    per core License for the same.I would take 1 to 2 monts for quote ,discussions,License ,delivery of the product .
    Now i am in need to Install the sqlserver 2012 software urgently,and i am thinking of to download Evaluation Edition and once i received the Licensed product key i will upgrade to Enterprise edition.Does this
    a Valid Approach.
    If this is not ,please suggest how i can download and use the sqlserver 2012 Enterprise edition with AlwaysOn avaialbility Groups software.
    Thanks
    Surendra

    Hi,
    Yes it is possible to upgrade evaluation version to licensed version.
    Yes it is a valid approach too, but be aware that licensed version is valid upto 180 days.
    You may find the following articles useful.
    pgrade to a Different Edition of SQL Server 2012 (Setup)
    Upgrading from SQL Server 2012 Evaluation Edition
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    Praveen Dsa | MCITP - Database Administrator 2008 |
    My Blog | My Page

  • SQLSERVER 2012 LOG SIZE INCREASE EXTENSIVELY

    Hi Friends,
    I want to inquire, as our sqlserver 2012 in full  recovery mode , I notices whenever we are executing rebuild indexes maintenancejob the logfile grown up extensively every time.  h
    thank you.
    regards,
    asad

    Hi Friends,
    I want to inquire, as our sqlserver 2012 in full  recovery mode , I notices whenever we are executing rebuild indexes maintenancejob the logfile grown up extensively every time.  h
    Asad,
    Why are you posting same thread about SQL Server log file every time. I can see all your previous threads on same Log file issue.
    This clearly shows that you don't spend event single moment reading links posted as answer. Why dont you go and read about SQL Server before asking *almost* same question every time.
    Yes log file will grow that is default behavior why are you executing index rebuild for all index. Did you searched about index rebuild and how it works and what gets logged.
    You can read here
    Curious case of logging in Online and offline index rebuild
    Use Ola Hallengren solution for index rebuild it will only rebuild index that is fragmented.
    Don't just blindly post question spend some time on net searching I am sure you would find lot of articles
    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

  • Connection error while defining a IT resource for SQLServer

    Hello,
    I am new to the OIM. I am trying to provision users to a SQLServer database. I installed the DBConnector successfully, but while defining a ITResource (of type 'DBUM ITResource definition') for SQLServer from Web UI, I am getting this error.
    Test connectivity is not supported for the IT resource type DBUM ITResource definition
    Click Back to correct the connection parameters and re-test connection or click Continue to create the IT Resource anyway
    Here are the parameters I am providing. I am sure I am entering the correct uid and pwd for the database.
    Abandoned connection timeout :900
    Admin ID : testUser
    Admin Password : testPassword
    Configuration : Lookup.DBUM.MSSQL.Configuration
    Connection pooling supported : False
    Connection Properties :
    Connection Retries : 2
    Connection Timeout : 1000
    Connection wait timeout : 60
    Database Driver : com.microsoft.sqlserver.jdbc.SQLServerDriver
    Database Name : testDatabase
    Inactive connection timeout : 300
    Initial pool size : 3
    isSecure : No
    JDBC URL : jdbc:sqlserver://SQLServerHost;database=testDatabase
    Max pool size : 30
    Min pool size : 2
    Native connection pool class definition :
    Pool excluded fields : Configuration Lookup
    Pool preference : Default
    ResourceConnection class definition : oracle.iam.connectors.dbum.common.db.util.DBUMResourceConnectionImpl
    Retry Interval : 1000
    Target supports only one connection : False
    Timeout check interval : 30
    Validate connection on borrow : true
    Thanks!
    Kabi

    Hi,
    I setup the trace of com.waveset.adapter.ScriptedConnection.
    the log message is following, what's reason of prblem? please help.
    20070723 16:16:47.937 httpWorkerThread-8080-4(0x01341244) ScriptedConnectionPool#getConnection() Entry no args
    20070723 16:16:47.937 httpWorkerThread-8080-4(0x01341244) ScriptedConnectionPool#getConnection() Exit void
    20070723 16:16:47.938 httpWorkerThread-8080-4(0x01341244) TelnetConnection#connect() Entry no args
    20070723 16:16:47.938 httpWorkerThread-8080-4(0x01341244) TelnetConnection#connect() Exit void
    20070723 16:16:47.938 httpWorkerThread-8080-4(0x01341244) ScriptedConnection#runScript(Script) Entry no args
    20070723 16:16:47.938 httpWorkerThread-8080-4(0x01341244) ScriptedConnection#processWaitFor() Entry no args
    20070723 16:16:47.939 httpWorkerThread-8080-4(0x01341244) ScriptedConnection#refreshUnprocessedInput(int, int, String, boolean) Entry no args
    20070723 16:17:57.990 httpWorkerThread-8080-4(0x01341244) ScriptedConnection#processWaitFor() Info Script failed waiting for "LOGIN:" with the following unprocessed text: ""

  • HP Officejet Pro 6830 Scanner drivers for Server 2012

    Printer: HP Officejet Pro 6830 e-All-in-One Printer
    Serial Number: [edited Serial Number by Moderator]
    Product Number: E3E02A
    Email Address: [edited email by moderator]
    Operating System: Windows Server 2012
    I have an issue when trying to install the printer and scanner driver on Server 2012. The driver on the website for Server 2012 is 32Bit link below.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4138&lc=en&cc=za&dlc=en&sw_lang=&product=5390...
    And the drivers that came with the printer give the following error: "This computer does not meet the following system requirement(s): The Operating System of this computer is not supported."
    Have phoned HP on the support line all they do is give me a different phone number to phone.
    Please someone help.

    Hi @Mark-active
    Although my area of expertise is with consumer products and software, not commerical products such as servers, I do have something that might be helpful; Setting Up the Printer on Windows Server 2003, 2008, or 2012 for HP Officejet Printers.
    If the issue you are experiencing persists, I suggest giving us a call. If you are in Canada or US call 800 474 6836, or you can Contact HP Worldwide.
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Unable to install Cumulative Update 2 for SCCM 2012 R2

    Hi,
    I am trying to install the CU2 update for SCCM 2012 R2 and I am getting the following error during prerequisite checks:
    Server update status: This update applies to product version 5.0.7958. The installed version on this computer is 5.0.7804.1000. This update is not applicable to this computer.
    Console update status: No serviceable configuration manager role was found on the local system.
    Can anyone provide me some guidance or thoughts on how to get to the correct version to install this update?
    Thank you

    You are running 
    ConfigMgr 2012 SP1 – 5.00.7804.1000 - build 7804
    The CU2 you are trying to apply is for SCCM 2012 R2.
    http://www.systemcenterdudes.com/sccm-2012-version-numbers/
    For SP1 the latest CU is CU5 : http://support.microsoft.com/kb/2978017/en-us
    Benoit Lecours | Blog: System Center Dudes

  • How to setup IPV6 boundary for SCCM 2012 R2 Primary Site?

    How to setup IPV6 boundary for SCCM 2012 R2 Primary Site?
    I have Direct Access implemented in my environment. I have Windows 8.1 machine connecting through direct access.
    I want to manage the windows 8.1 through SCCM. How do I setup IPV6 boundary. Can someone guide me through?
    Below are the Windows 8.1 client IP Configuration
    C:\Windows\system32>ipconfig
    Windows IP Configuration
    Wireless LAN adapter Local Area Connection* 3:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Wireless LAN adapter Wi-Fi:
       Connection-specific DNS Suffix  . : home
       Link-local IPv6 Address . . . . . : fe80::7466:11a5:39ed:ffb0%4
       IPv4 Address. . . . . . . . . . . : 192.168.1.5
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 192.168.1.1
    Tunnel adapter isatap.home:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : home
    Tunnel adapter Teredo Tunneling Pseudo-Interface:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : 2001:0:5ef5:79fd:1494:1339:93d6:439c
       Link-local IPv6 Address . . . . . : fe80::1494:1339:93d6:439c%9
       Default Gateway . . . . . . . . . :
    Tunnel adapter iphttpsinterface:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1000:e1a7:9cc8:c3c7:d819
       Temporary IPv6 Address. . . . . . : fd64:fc00:d17b:1000:206c:f857:ddbe:2f2b
       Link-local IPv6 Address . . . . . : fe80::e1a7:9cc8:c3c7:d819%10
       Default Gateway . . . . . . . . . :
    Below are the IPConfiguration details for Direct Access server
    C:\Windows\system32>PsExec.exe \\MURA01 ipconfig
    PsExec v1.98 - Execute processes remotely
    Copyright (C) 2001-2010 Mark Russinovich
    Sysinternals - www.sysinternals.com
    Windows IP Configuration
    Ethernet adapter Ethernet:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:3333::1
       Link-local IPv6 Address . . . . . : fe80::b1ad:1c29:b4a:9125%15
       IPv4 Address. . . . . . . . . . . : 10.192.1.25
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 10.192.1.1
    Tunnel adapter Teredo Tunneling Pseudo-Interface:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter isatap.{3D6A5E86-D85A-46C8-B69B-FFCF6D5D849C}:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1:0:5efe:10.192.1.25
       Link-local IPv6 Address . . . . . : fe80::5efe:10.192.1.25%18
       Default Gateway . . . . . . . . . :
    Tunnel adapter 6TO4 Adapter:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter IPHTTPSInterface:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1000::1
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1000::2
       IPv6 Address. . . . . . . . . . . : fd64:fc00:d17b:1000:2552:e9f8:87d3:ed8e
       Link-local IPv6 Address . . . . . : fe80::2552:e9f8:87d3:ed8e%20
       Default Gateway . . . . . . . . . :
    ipconfig exited on MURA01 with error code 0.
    Below are the IPCONFIG Details for SCCM Server:
    C:\Windows\system32>PsExec.exe \\sccm01 ipconfig
    PsExec v1.98 - Execute processes remotely
    Copyright (C) 2001-2010 Mark Russinovich
    Sysinternals - www.sysinternals.com
    Windows IP Configuration
    Ethernet adapter Ethernet:
       Connection-specific DNS Suffix  . :
       Link-local IPv6 Address . . . . . : fe80::9f0:86f9:441d:bc07%12
       IPv4 Address. . . . . . . . . . . : 10.192.1.30
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 10.192.1.1
    Tunnel adapter isatap.{0749E47D-AE0A-4D47-9D37-BDDC848E56F6}:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    ipconfig exited on sccm01 with error code 0.
    What will be the IPV6 values to configure boundary?

    Depending on how the clients connect use the IPv6 prefix of their 6to4, Teredo, and/ or IP-HTTPS tunnel. Just keep in mind that it could become a long list...
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?

    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    I have installed KB2734608, but when I search MS13-101 , no patch for Win 2012.
    Can you help me resolve this problem ?
    Thanks

    On Thu, 10 Apr 2014 06:01:48 +0000, fujitsu08 wrote:
    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    WSUS has its own, dedicated forum where the WSUS experts answer questions.
    You should repost your question here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverwsus
    Paul Adare - FIM CM MVP
    Aibohphobia: n. Fear of Palindromes

  • Getting Client Name in Remote Desktop Manager for Server 2012 R2

    Remote Desktop Manager appears to have been replaced or moved in Server 2012 to Server Manager. It doesn't really matter to me where this is located, however I don't seem to have all of the features that were in Remote Desktop Manager (2008 R2). The biggest
    one that I need is to be able to tell what computer each RDS user is logged in from. We use this quite often so we can remote into that users computer for troubleshooting. 
    Does anybody know how to obtain this information in Server 2012 R2? If it's not possible in Server Manager, can it be done with Powershell? A 3rd party application? 
    So far the only way I have been able to do this is if there is still a 2008 R2 server on the network. I can log into it and use Remote Desktop Manager to connect to the 2012 R2 server. Since a 2008 server can still obtain this information for a 2012 server
    there must be a way to achieve this. 
    Thanks in advance! 
    Tom

    Hi Tom,
    In addition, the PSTerminalServices PowerShell Module might help.
    https://psterminalservices.codeplex.com/releases/view/65937
    You can run Get-TSSession in PowerShell.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Crystal report for vs 2012 formatting details section

    Hi All,
    I am taking value from a formula-
    if( {Table.Role} like "*ceomd*" )
    then
    {Table.FullName}
    else
    I have put these formulas in the details section ;  I want to show this report like as below
    view 1
    ceo - Name of the person
    technical contact - name of the person
    supply chain -  name of the person
    but unfortunately its not working; it is coming on multiple pages
    then I tried to put in to table structure
    view 2
    ceo                         |  technical contact           |supply chain
    Name of the person |   name of the person       |   name of the person
    then is coming with blank rows
    either of above view is fine with me.
    can you please help me?
    many thanks

    Duplicate of: Crystal report for vs 2012
    Please do not cross post. See the SCN Rules of Engagement
    - Ludek
    SCN Moderator.

Maybe you are looking for

  • Creative Cloud App installer disappears after "Initialising Installer" stage

    I recently had to reboot my laptop to its settings for 4 days ago, and ever since then I cannot seem to download CC app at all. I don't even get an error message, the installer just disappears after the Initialising Installer stage. I have tried usin

  • Space allocation on 11g R2 on multiple data files in one tablespace

    hello if the following is explained in Oracle 11g R2 documentation please send a pointer. I cant find it myself right now. my question is about space allocation (during inserts and during table data load) in one table space containing multiple data f

  • Log4j command line

    hello, i have been making an application that uses log4j, and its been working fine in eclipse, but now i wish to run it from a command line and have no idea how to include the log4j jar file. any help is apprectiated. Thanks, Vojnik

  • Why am I getting error message when trying to send attachments?

    I am having a time sending attachments, and most of them have been jpeg, with Safari. After a time when I push "send", I get a message that "Safari cannot open the page". It then says" "lost network connection" (NSURLerror Domain-1005") How can I cor

  • Iphone version update ****

    Help....... I have an iphone 4, and its installed with 4.1 version, i tried updating it to 4.2 when that came out but it would not update. i left it because i just thought i was doing somthing wrong but now 4.3 version has come out i really want to u