I have an app that is running against the sqla but soon unfortunately we will move it to run against the sql server. There is a query in sqla that gets current publisher from dummy baiscally this is what it is:

select current publisher from dummy ;

this returns DBA when I run it against my sqla db, however the query would not run against sql server, does anyone know what the comparable query is in sql server? or should I ask this in sql server forum? Any help would be great.

asked 20 Sep '12, 13:30

javedrehman's gravatar image

javedrehman
256141421
accept rate: 0%

retagged 24 Sep '12, 07:37

Daz%20Liquid's gravatar image

Daz Liquid
905202541


There isn't a compatible query in MS SQL Server (or ASE). The "current publisher" is a database user in the local database thta is used to uniquely identify the database in a SQL Remote replication system. SQL Remote only runs against SQL Anywhere, so the query is specific to SQL Anywhere.

permanent link

answered 20 Sep '12, 13:39

Reg%20Domaratzki's gravatar image

Reg Domaratzki
7.7k343118
accept rate: 37%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×103

question asked: 20 Sep '12, 13:30

question was seen: 2,369 times

last updated: 24 Sep '12, 07:37