{"id":2648,"date":"2018-09-05T14:38:01","date_gmt":"2018-09-05T14:38:01","guid":{"rendered":"http:\/\/dbtut.com\/?p=2648"},"modified":"2018-12-06T13:08:25","modified_gmt":"2018-12-06T13:08:25","slug":"sap-sybase-ase-warm-standby-database-using-replication-server","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/","title":{"rendered":"SAP Sybase ASE Warm Standby Database using Replication Server"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><em>We are going to create warm standby backup of SAP Sybase ASE <strong>Prod1<\/strong> server to<strong> Standby1<\/strong> server using Sybase Replication Server <strong>REP15_7\u00a0<\/strong>for a database named : testdb. It comprises to the following 15 steps.<\/em><\/p>\n<p><strong>Pre-Requisites : <\/strong><\/p>\n<p>a) 2 Sybase ASE instances<\/p>\n<p>b)1 replication server instance<\/p>\n<p>c)1 database named testdb<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Step 1: Enable Replication Agent on both Sybase ASE Servers<\/strong><\/p>\n<pre class=\"lang:default decode:true \">sp_configure 'enable rep agent threads' ,1<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 2: Create a login that on both Sybase ASE Servers and assign replication_role <\/strong><\/p>\n<p>These logins will be used in Replication Process<\/p>\n<p>Create logins \u00a0on both server<\/p>\n<pre class=\"lang:default decode:true \">use master\r\ngo\r\nsp_addlogin test_maint,xxxxx\r\ngo\r\ngrant role replication_role to test_maint\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 3: Add the user to the dbo profile of the database that is invlovled in this process.<\/strong><\/p>\n<pre class=\"lang:default decode:true\">use testdb\r\ngo\r\nsp_addalias test_maint,dbo\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 4: Synchronize\u00a0the logins on both the servers if required<\/b><\/p>\n<p>execute this to export logins for primary server:<\/p>\n<pre class=\"lang:default decode:true \">bcp master..syslogins out \/tmp\/logins.txt -c -SProd1 -Usa -P\r\n\r\nexecute this to import logins on secondary server:\r\n\r\nbcp master..syslogins in \/tmp\/logins.txt -c -SStandby1 -Usa -P<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 5: Install the replication script for both Primary &amp; Standby Servers<\/b><\/p>\n<p>Login to rep server and browse the script from location $SYBASE\/REP15-5_5\/scripts and execute this:<\/p>\n<pre class=\"lang:default decode:true\">isql -Usa -P&lt;password&gt; -SProd1 -Dtestdb -i changed_rs_install_primary.sql\r\n&amp;\r\nisql -Usa -P&lt;password&gt; -SStandby1 -Dtestdb -i changed_rs_install_primary.sql<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 6: Create logical connection on replication server<\/b><\/p>\n<p>Connect to the replication server and execute this<\/p>\n<pre class=\"lang:default decode:true\">create logical connection LASE.testdb\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 7: Create a connection from replication serer to active database<\/b><\/p>\n<pre class=\"lang:default decode:true \">create connection to Prod1.testdb\r\nset error class to rs_sqlserver_error_class\r\nset function string class to rs_sqlserver_function_class\r\nset username to test_maint\r\nset password to xxxxx\r\nwith log transfer on\r\nas active for LASE.testdb<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 8:\u00a0<\/b><b>Create a login in the replication server<\/b><\/p>\n<p>This user will be used to connection replication agent from Sybase ASE Servers<\/p>\n<pre class=\"lang:default decode:true\">create user rep_user\r\nset password '123456'\r\nset password_expiration to '0'\r\ngo\r\ngrant connect source to rep_user\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 9:\u00a0Create a connection from the replication server to the standby server<\/b><\/p>\n<pre class=\"lang:default decode:true\">create connection to Standby1.testdb\r\nset error class to rs_sqlserver_error_class\r\nset function string class to rs_sqlserver_function_class\r\nset username to test_maint\r\nset password to xxxxx\r\nwith log transfer on\r\nas standby for LASE.testdb\r\nuse dump marker\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 10:\u00a0Check the logical connections<\/b><\/p>\n<p>execute the following command on replication server<\/p>\n<pre class=\"lang:default decode:true\">admin logical_status\r\ngo\r\nLASE.testdb\r\n[107] Prod1.testdb\r\nSuspended\/\r\n[108] Standby1.testdb\r\nActive\/\r\n[16777317] REP15_7\r\nNone\r\nNone<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 11:\u00a0<\/b><strong><span id=\"Mark_the_database_for_replication_and_grant_permissions\" class=\"mw-headline\">Mark the database for replication and grant permissions<\/span><\/strong><\/p>\n<p>Execute the following command on primary server to grant permissions and activate the database to capture all activities for production database by executing the commands:<\/p>\n<pre class=\"lang:default decode:true\">grant execute on rs_update_lastcommit to public\r\ngrant execute on rs_marker to public\r\ngrant execute on rs_check_repl_stat to public\r\ngo\r\nsp_reptostandby 'testdb','all'\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 12:\u00a0Configure Replication Agent on primary server<\/b><\/p>\n<p>Execute the following command on primary server to configure replication agent on primary server<\/p>\n<pre class=\"lang:default decode:true \">use testdb\r\ngo\r\n\r\nsp_config_rep_agent 'testdb', 'enable', 'REP15_7', 'rep_user', 'xxxxx'\r\ngo\r\nsp_config_rep_agent 'testdb', 'send warm standby xacts', true\r\ngo\r\nsp_setreplicate rs_marker,'true'\r\ngo\r\nsp_setreplicate rs_update_lastcommit,'true'\r\ngo\r\n\r\nExecute the following command to start replication agent on primary server\r\n\r\nsp_start_rep_agent 'testdb'\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p>Check the error log to verify the status of replication agent.<\/p>\n<p><b>Step 13:\u00a0Dump the database on primary server<\/b><\/p>\n<pre class=\"lang:default decode:true \">dump database testdb to '\/tmp\/test_bk.dat'<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 14:\u00a0Restore the database on standby server<\/b><\/p>\n<pre class=\"lang:default decode:true\">load database testdb from '\/tmp\/test_bk.dat'\r\ngo\r\nonline database testdb\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 15:\u00a0Resume the connection on Primary &amp; Standby Servers and verify the replication status<\/b><\/p>\n<p>Connect the replication server and execute the following commands to resume the connections of primary &amp; secondary servers to replication server respectively.<\/p>\n<pre class=\"lang:default decode:true\">resume connection to Prod1.testdb\r\ngo\r\nresume connection to Standby1.testdb\r\ngo\r\nCheck the replication status by the following commands\r\nadmin logical_status\r\ngo\r\nadmin who_is_down\r\ngo<\/pre>\n<p>&nbsp;<\/p>\n<p><b>Step 16:\u00a0Validate the replication between primary &amp; standby servers<\/b><\/p>\n<p>Primary:<\/p>\n<pre class=\"lang:default decode:true\">use testdb\r\ngo\r\nCREATE TABLE dbo.TEST1 ( COL1 int NOT NULL, COL2 varchar(25) NULL ) LOCK ALLPAGES\r\nGO\r\n\r\ninsert into dbo.TEST1 values (5,'B')\r\n\r\nselect * from TEST1\r\n\r\nSecondary:\r\n\r\nselect * from TEST1<\/pre>\n<p><span style=\"font-size: 24pt;\"><strong>DONE!!!<\/strong><\/span><\/p>\n\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_2648\" class=\"pvc_stats all  \" data-element-id=\"2648\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; We are going to create warm standby backup of SAP Sybase ASE Prod1 server to Standby1 server using Sybase Replication Server REP15_7\u00a0for a database named : testdb. It comprises to the following 15 steps. Pre-Requisites : a) 2 Sybase ASE instances b)1 replication server instance c)1 database named testdb &nbsp; Step 1: Enable Replication &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_2648\" class=\"pvc_stats all  \" data-element-id=\"2648\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":181,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[1319],"tags":[],"class_list":["post-2648","post","type-post","status-publish","format-standard","","category-sybase"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials<\/title>\n<meta name=\"description\" content=\"SAP Sybase ASE Warm Standby Database using Replication Server\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"SAP Sybase ASE Warm Standby Database using Replication Server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-05T14:38:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-12-06T13:08:25+00:00\" \/>\n<meta name=\"author\" content=\"Engr. Mohammad Rizwan Yasin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Engr. Mohammad Rizwan Yasin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\"},\"author\":{\"name\":\"Engr. Mohammad Rizwan Yasin\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53\"},\"headline\":\"SAP Sybase ASE Warm Standby Database using Replication Server\",\"datePublished\":\"2018-09-05T14:38:01+00:00\",\"dateModified\":\"2018-12-06T13:08:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\"},\"wordCount\":371,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"articleSection\":[\"Sybase\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\",\"name\":\"SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-09-05T14:38:01+00:00\",\"dateModified\":\"2018-12-06T13:08:25+00:00\",\"description\":\"SAP Sybase ASE Warm Standby Database using Replication Server\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SAP Sybase ASE Warm Standby Database using Replication Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53\",\"name\":\"Engr. Mohammad Rizwan Yasin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g\",\"caption\":\"Engr. Mohammad Rizwan Yasin\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/mohammadrizwan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials","description":"SAP Sybase ASE Warm Standby Database using Replication Server","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/","og_locale":"en_US","og_type":"article","og_title":"SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials","og_description":"SAP Sybase ASE Warm Standby Database using Replication Server","og_url":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/","og_site_name":"Database Tutorials","article_published_time":"2018-09-05T14:38:01+00:00","article_modified_time":"2018-12-06T13:08:25+00:00","author":"Engr. Mohammad Rizwan Yasin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Engr. Mohammad Rizwan Yasin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/"},"author":{"name":"Engr. Mohammad Rizwan Yasin","@id":"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53"},"headline":"SAP Sybase ASE Warm Standby Database using Replication Server","datePublished":"2018-09-05T14:38:01+00:00","dateModified":"2018-12-06T13:08:25+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/"},"wordCount":371,"commentCount":6,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"articleSection":["Sybase"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/","url":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/","name":"SAP Sybase ASE Warm Standby Database using Replication Server - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-09-05T14:38:01+00:00","dateModified":"2018-12-06T13:08:25+00:00","description":"SAP Sybase ASE Warm Standby Database using Replication Server","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/09\/05\/sap-sybase-ase-warm-standby-database-using-replication-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"SAP Sybase ASE Warm Standby Database using Replication Server"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/9b0bcfe5e42a7f42c1aed036ae5c9f53","name":"Engr. Mohammad Rizwan Yasin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fe7a00fd631820cba9b5309a297ca14ce4b9e430fe57c00399e9cca2f0550e10?s=96&d=mm&r=g","caption":"Engr. Mohammad Rizwan Yasin"},"url":"https:\/\/dbtut.com\/index.php\/author\/mohammadrizwan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/2648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/181"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=2648"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/2648\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=2648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=2648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=2648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}