USE a SQL Alias when configuring SSRS wizard.

I am using SSRS 2008 R2.
on my SSRS machine. I went and created the SQL Alias (both for 32 bit and the other one)
Then I ran the SSRS configuration wizard and tried to configure teh SSRS service to create a report server database by using a SQL Alias.
it connects to the DB fine but at the last step it gives an error saying no such host.
Has anyone been able to configure SSRS Service when they used an alias for the sql server?
val it: unit=()

Hi,
I have created a report server database using a SQL Server Account, and everything goes well. Generally, the error message “No such host is known” indicates the target server is not available or refusing the connection. First, ensure the target database
server is configured to use the “SQL Server and Windows Authentication mode”. 
From your description, on the “Database Server” tab of the “Report Server Database Configuration Wizard”, it connects to the database server successfully after typing the SQL Server Account credentials. Right?
If so, please ensure to select “SQL Server Credentials” on the “Credentials” tab.
If not, please input the SQL Server account credentials on the “Database Server” tab, and test the connection.
If the issue persists, please post the error details as well as the related error message in the Reporting Services Log file.
Regards,
Mike Yin
If you have any feedback on our support, please click
here
Mike Yin
TechNet Community Support

Similar Messages

  • [SCOM 2012] - SQL Alias supported ?

    Hi everyone,
    simple (??) question: is the use of SQL Alias for OpsMgrDB and Data Warehouse supported with SCOM 2012 ???
    Regards,
    P. Augras

    Stefan,
    Is there anything special that needs to be done for using a SQL Alias? I am able to configure the Operations Manager setup going directly to the database, but it doesn't seem to work when I use an alias? Any suggestions?
    Thanks,
    Mark

  • 'No such host is known' error when configuring Reporting database

    Hi,
    We are joining two report server databases using reporting services config manager. The problem is when we are trying to connect database on another machine we are receiving following error at step 'generating Rights script'
    System.Net.Sockets.SocketException: No such host is known
       at System.Net.Dns.GetAddrInfo(String name)
       at System.Net.Dns.InternalGetHostByName(String hostName, Boolean includeIPv6)
       at System.Net.Dns.GetHostEntry(String hostNameOrAddress)
       at ReportServicesConfigUI.RSDatabase.IsLocalDbServer(String dbServer)
       at ReportServicesConfigUI.RSDatabase.GrantRSConnectionRights()
       at ReportServicesConfigUI.RSDatabase.CreateNewDatabase()
    As per step mentioned in following link,
    http://blogs.msdn.com/b/sameersurve/archive/2009/06/15/no-such-host-is-known-error-when-configuring-ssrs-2008.aspx
    We tried opening port 1434 for the Reportserver db machine. but it didnt worked for me.
    Following are points i feel could be the reason of failure,
    1. The two machine we are working on are in different domains.
    2. The Product version of the two reporting servers are different.
    Have anyone experienced this if yes any solution that i can try? 

    Hi Shrikant_k,
    If we are using a remote database server for the report server database, we should refer to the following tips:
    Enable remote connections. And we should also open your firewall software and open the port that SQL Server listens on. For the default instance, this is typically port 1433 for TCP/IP connections. To verify that the instance accepts remote connections,
    please refer to the following article:
    http://technet.microsoft.com/en-us/library/ms157300(v=sql.105).aspx
    When you enable remote connections, the client and server protocols will also be enabled. To verify the protocols are enabled, please see:
    http://technet.microsoft.com/en-us/library/ms191294(v=sql.105).aspx
    When the database server is in a different domain or we are using workgroup security, we must configure the connection to use a SQL Server database login. In this way, we must update the report server database connection every time we change the password
    or the account.
    When creating a report server database, be aware that not all editions of SQL Server can be used to host the database. The following document is for your reference:
    http://technet.microsoft.com/en-us/library/ms157285(v=sql.105).aspx
    Reference:
    Configuring a Report Server Database Connection
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error using Extended SQL Function substr

    I want to be able to look for the first three letters of a month in the XML and if found replace the 3 letter month (for example SEP-05 to September 05). I have tried the following which throw a namespace exception. Please let me know what I may be doing wrong?
    1. <?if:(xdofx:substr(../fsg:ColContext[2]/fsg:ColHeadLine2,1,3)='SEP'?>September<?end if?> should give me September.
    The above fails with: Font Dir: E:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    RTFProcessor setLocale: en-us
    FOProcessor setData: E:\Work\Bacardi\Reports\XML\US GAAP BALSHEET\XML BL Dir Rpt BS YTD_0126.xml
    FOProcessor setLocale: en-us
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:514)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:192)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:156)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:916)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:869)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:204)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1535)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:925)
         at RTF2PDF.runRTFto(RTF2PDF.java:590)
         at RTF2PDF.runXDO(RTF2PDF.java:443)
         at RTF2PDF.main(RTF2PDF.java:237)
    Caused by: oracle.xdo.parser.v2.XPathException: Namespace prefix 'xdofx' used but not declared.
         at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
         at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
         ... 15 more
    2. For the year, I would use another form field and do something like this next to the month above: <?xdofx:substr(../fsg:ColContext[2]/fsg:ColHeadLine2,5,2)?> for a result of '05'

    Hasan
    XSL has many native string manipulation functions so you do not need to use our SQL functions when a native XSL one will do:
    <?if:substring(normalize-space(../fsg:ColContext[2]/fsg:ColHeadLine2),1,3)='SEP'?>September<?end if?>
    See that dang normalize space function again ... had to use it on my FSG sample.
    Would it not be easier to either:
    1. Have the FSG generate the September YYYY format or
    2. Have FSG generate XSD date formats, 'YYYY-MM-DD', then you can just specify the date format in the form fields
    Regards, Tim

  • Sending mail using IOS and alias

    I have an ipad and iphone that uses my name alias when I send mail "from" my devices and then my wife has an ipad and iphone that I would like for her to use her alias when she sends emails from her devices.  Currently even though I have both alias active to use with mail, when I select my alias on my devices it automatically uses that alias on my wife's devices.  She has to manually change the "from" address to her alias.  Is there a way to designate her alias as the "from" address on her device and I can use my alias in the "from" on my devices?  This is not a problem on my laptop using Maverick.

    http://forum.java.sun.com/thread.jsp?forum=43&thread=165268

  • No visibility of local SQL Server instance when configuring ODBC data source

    I am setting up an app. requiring ODBC access to a SQL Server DB using a Windows Server 2008 R2 OS on a VM, with a local SQL Server 2014 instance.  When configuring either a new user or system ODBC DSN, using the ODBC Driver 11 for SQL Server
    (version 2014.120.2008.08), the dropdown list of servers is empty.  How do I get it to see the local SQL Server instance?

    For the local default instance, just enter "." or "(local)" for the server name.  For a named instance, the SQL Server Browser service needs to be running to enumerate the named instances automatically but you can still type the
    instance name.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Column alias for spatial column within cursor loop using dynamic SQL

    The following PL/SQL is trying to generate an error report for records or objects which are 3 dimensional or above. I have no issue execute one statement in SQLPLUS but I need to use the column alias for the spatial column. But, it is a different story using PL/SQL and dynamic SQL Any help will be great because I've been working on this for than 8 hours but with no luck! Thanks.
    Here is the error I'm getting,
    stmt := 'select p.column_name.get_gtype(), id from '|| table_name p ' where p.column_name.get_gtype() > 2 ';
    ERROR at line 15:
    ORA-06550: line 15, column 79:
    PLS-00103: Encountered the symbol "P" when expecting one of the following:
    . ( * @ % & = - + ; < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
    LIKE4_ LIKEC_ between || member SUBMULTISET_
    The symbol "* was inserted before "P" to continue.
    and my PL/SQL is,
    set serveroutput on size 100000 feedback off
    declare
    rs integer;
    rs1 integer;
    cur integer;
    rp integer;
    trs integer;
    n integer;
    un varchar2(30);
    stmt varchar2(200);
    begin
    dbms_output.put_line(rpad('Table Name',40)||' Dimension');
    dbms_output.put_line(rpad('-',53,'-'));
    cur:= dbms_sql.open_cursor;
    for t in (select column_name,table_name from user_sdo_geom_metadata where regexp_like(table_name, '[^[A-B]_[AB]$'))
    loop
    stmt := 'select p.column_name.get_gtype(), id from '|| table_name p ' where p.column_name.get_gtype() > 2 ';
    dbms_sql.parse(cur, stmt, dbms_sql.native);
    dbms_sql.define_column(cur, 1, rs);
    dbms_sql.define_column(cur, 2, rs1);
    rp:= dbms_sql.execute(cur);
    n:=dbms_sql.fetch_rows(cur);
    dbms_sql.column_value(cur, 1, rs);
    dbms_sql.column_value(cur, 2, rs1);
    dbms_output.put_line(rpad(t.table_name,38,'.')||rpad(rs,15)||rpad(rs1,15));
    end loop;
    dbms_sql.close_cursor(cur);
    dbms_output.put_line(rpad('-',53,'-'));
    end;
    set serveroutput off feedback on feedback 6

    The following PL/SQL is trying to generate an error report for records or objects which are 3 dimensional or above. I have no issue execute one statement in SQLPLUS but I need to use the column alias for the spatial column. But, it is a different story using PL/SQL and dynamic SQL Any help will be great because I've been working on this for than 8 hours but with no luck! Thanks.
    Here is the error I'm getting,
    stmt := 'select p.column_name.get_gtype(), id from '|| table_name p ' where p.column_name.get_gtype() > 2 ';
    ERROR at line 15:
    ORA-06550: line 15, column 79:
    PLS-00103: Encountered the symbol "P" when expecting one of the following:
    . ( * @ % & = - + ; < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
    LIKE4_ LIKEC_ between || member SUBMULTISET_
    The symbol "* was inserted before "P" to continue.
    and my PL/SQL is,
    set serveroutput on size 100000 feedback off
    declare
    rs integer;
    rs1 integer;
    cur integer;
    rp integer;
    trs integer;
    n integer;
    un varchar2(30);
    stmt varchar2(200);
    begin
    dbms_output.put_line(rpad('Table Name',40)||' Dimension');
    dbms_output.put_line(rpad('-',53,'-'));
    cur:= dbms_sql.open_cursor;
    for t in (select column_name,table_name from user_sdo_geom_metadata where regexp_like(table_name, '[^[A-B]_[AB]$'))
    loop
    stmt := 'select p.column_name.get_gtype(), id from '|| table_name p ' where p.column_name.get_gtype() > 2 ';
    dbms_sql.parse(cur, stmt, dbms_sql.native);
    dbms_sql.define_column(cur, 1, rs);
    dbms_sql.define_column(cur, 2, rs1);
    rp:= dbms_sql.execute(cur);
    n:=dbms_sql.fetch_rows(cur);
    dbms_sql.column_value(cur, 1, rs);
    dbms_sql.column_value(cur, 2, rs1);
    dbms_output.put_line(rpad(t.table_name,38,'.')||rpad(rs,15)||rpad(rs1,15));
    end loop;
    dbms_sql.close_cursor(cur);
    dbms_output.put_line(rpad('-',53,'-'));
    end;
    set serveroutput off feedback on feedback 6

  • Not using MSDTC in SQL Cluster when using SSIS

    I have an SSIS package that reads data from Oracle and inserts it into SQL Server.
    The SQL Server is clustered (node1, node2) but it doesn't have MSDTC. The package runs fine without problems.
    I have read that if you are using SSIS package then MSDTC is a must when configuring SQL Server cluster. But I am not using it and still package is working fine so I wanted to ask what's the use of MSDTC? How is my package working without it?

    Please refer below link and determine if you need it. If you are using distributed transaction in SSIS package you will require it.
    Do i need to configure MSDTC
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers
    My TechNet Wiki Articles

  • Email Configuration using PL/SQL

    Dear All,
    I am trying to send a mail using pl/sql package, but mail is not going, its throwing the below error.
    The configured ip is 192.168.5.44 . The same i am calling in the procedure
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 138
    ORA-06512: at "APPS.XX_SEND_MAIL", line 21
    ORA-06512: at line 2
    If anyone provide a solution it will be much helpful.
    Coding used:
    CREATE OR REPLACE PROCEDURE APPS.xx_send_mail (
    p_to IN VARCHAR2,
    p_from IN VARCHAR2,
    p_subject IN VARCHAR2,
    p_text_msg IN VARCHAR2 DEFAULT NULL,
    p_html_msg IN VARCHAR2 DEFAULT NULL,
    p_smtp_host IN VARCHAR2,
    p_smtp_port IN NUMBER DEFAULT 25
    AS
    l_mail_conn UTL_SMTP.connection;
    l_boundary VARCHAR2 (50) := '----=*#abc1234321cba#*=';
    BEGIN
    utl_tcp.close_all_connections;
    dbms_output.put_line('first begin ');
    l_mail_conn := UTL_SMTP.open_connection (p_smtp_host, p_smtp_port);
    dbms_output.put_line('before smtp host ');
    UTL_SMTP.helo (l_mail_conn, p_smtp_host);
    dbms_output.put_line('before from ');
    UTL_SMTP.mail (l_mail_conn, p_from);
    dbms_output.put_line('before second begin ');
    begin
    dbms_output.put_line('before to mail address ');
    UTL_SMTP.rcpt (l_mail_conn, p_to);
    dbms_output.put_line('after to mail address ');
    exception
    when others then
    dbms_output.put_line('sqlcode '||sqlcode||' '||' sqlerrm '||sqlerrm);
    end;
    dbms_output.put_line('after exception');
    UTL_SMTP.open_data (l_mail_conn);
    UTL_SMTP.write_data (l_mail_conn,
    'Date: '
    || TO_CHAR (SYSDATE, 'DD-MON-YYYY HH24:MI:SS')
    || UTL_TCP.crlf
    UTL_SMTP.write_data (l_mail_conn, 'To: ' || p_to || UTL_TCP.crlf);
    --UTL_SMTP.write_data (l_mail_conn, 'Cc: ' || p_cc || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn, 'From: ' || p_from || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn, 'Subject: ' || p_subject || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn, 'Reply-To: ' || p_from || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn, 'MIME-Version: 1.0' || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn,
    'Content-Type: multipart/alternative; boundary="'
    || l_boundary
    || '"'
    || UTL_TCP.crlf
    || UTL_TCP.crlf
    IF p_text_msg IS NOT NULL
    THEN
    UTL_SMTP.write_data (l_mail_conn, '--' || l_boundary || UTL_TCP.crlf);
    UTL_SMTP.write_data
    (l_mail_conn,
    'Content-Type: text/plain; charset="iso-8859-1"'
    || UTL_TCP.crlf
    || UTL_TCP.crlf
    UTL_SMTP.write_data (l_mail_conn, p_text_msg);
    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf || UTL_TCP.crlf);
    END IF;
    IF p_html_msg IS NOT NULL
    THEN
    UTL_SMTP.write_data (l_mail_conn, '--' || l_boundary || UTL_TCP.crlf);
    UTL_SMTP.write_data (l_mail_conn,
    'Content-Type: text/html; charset="iso-8859-1"'
    || UTL_TCP.crlf
    || UTL_TCP.crlf
    UTL_SMTP.write_data (l_mail_conn, p_html_msg);
    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf || UTL_TCP.crlf);
    END IF;
    UTL_SMTP.write_data (l_mail_conn,
    '--' || l_boundary || '--' || UTL_TCP.crlf
    UTL_SMTP.close_data (l_mail_conn);
    UTL_SMTP.quit (l_mail_conn);
    END;

    hi
    am also facing the same problem.
    procedure is
    CREATE OR REPLACE PROCEDURE send_mail (p_to        IN VARCHAR2,
                                           p_from      IN VARCHAR2,
                                           p_message   IN VARCHAR2)
    AS
      l_mail_conn   UTL_SMTP.connection;
      l_reply utl_smtp.reply;
      l_smtp_host VARCHAR2(50) := 'smtp.gmail.com:25';
      l_smtp_port NUMBER := 25; 
    BEGIN
      l_mail_conn := UTL_SMTP.open_connection(l_smtp_host, l_smtp_port);
      utl_smtp.EHLO(l_mail_conn, l_smtp_host);
      utl_smtp.command(l_mail_conn, 'AUTH LOGIN');
      utl_smtp.command(l_mail_conn, utl_raw.cast_to_varchar2(utl_encode.base64_encode(utl_raw.cast_to_raw('[email protected]'))));
      utl_smtp.command(l_mail_conn, utl_raw.cast_to_varchar2(utl_encode.base64_encode(utl_raw.cast_to_raw('mypwd'))));
      l_reply :=UTL_SMTP.mail(l_mail_conn, p_from);
      dbms_output.put_line( l_reply.code || ' ' || l_reply.text );
      UTL_SMTP.rcpt(l_mail_conn, p_to);
      UTL_SMTP.write_data(l_mail_conn, p_message || UTL_TCP.crlf || UTL_TCP.crlf);
      UTL_SMTP.quit(l_mail_conn);
    END;
    /am calling as follows
    declare
    conn        utl_smtp.connection;
    smtp_domain VARCHAR2(256) := null;
    BEGIN
    utl_smtp.command(conn,'STARTTLS');
    utl_smtp.helo(conn, smtp_domain);
       send_mail(p_to        => '[email protected]',
                 p_from      => '[email protected]',
                 p_message   => 'can i get message.');
    END;
    /and getting the error
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 97
    ORA-06512: at "SYS.UTL_SMTP", line 159
    ORA-06512: at line 5i have checked in control panel that IIS is installed and SMTP is also setup.
    i am able to ping SMTP HOST thro' TELNET
    and i have changed the SMTP_OUT_SERVER parameter like
    ALTER SYSTEM SET SMTP_OUT_SERVER= 'smtp.gmail.com:25' scope = botham not getting any clue. is it because of using GMAIL server?
    oracle version 10g and Windows is XP - SP3
    thank you for any help
    Regards
    Karthik

  • Hi! ... When configuring my new iPad, it says the UserId is already in use and I cannot progress any more. Of course it's in use, it's my UserId. How do I continue ?? ... Thanks in advance

    Hi! ... When configuring my new iPad, it says the UserId is already in use and I cannot progress any more. Of course it's in use, it's my UserId. How do I continue ?? ... Thanks in advance

    Did you select "Sign In with an Apple ID" as opposed to "Create a free Apple ID" when setting it up?

  • Getting core dump when using EXEC SQL CLOSE

    In my pro*c program , i have used a cursor to fetch the set of accounts.Once cursor is opened , code will perform set
    of operation using fetched data and then cursor is closed. Between open and closing of cursor , i have used 23 EXEC
    SQL CLOSE. For example i am copying the value of a to b using strlcpy between fetch and close cursor statement.If
    returned value from strlcpy is greater than size of destination variable, then flow should not proceed , in that case I will
    close the cursor using EXEC SQL CLOSE and return the flow to calling program. Similarly i have closed the cursor at
    another 22 locations.
    When i compile the code and run binary the core dump occurs. On analyzing the core it shows
    t@null (l@8) terminated by signal SEGV (no mapping at the fault address)
    0xffffffffffffffff: <bad address 0xffffffffffffffff>
    dbx: core file read error: address 0xfc4ffe48 not in data space
    Current function is dbMtBaseClass::Pswd_Change
    7860 sqlcxt(&_dbMtCtx, &sqlctx, &sqlstm, &sqlfpn);
    if I remove any of the three EXEC SQL CLOSE commands , core dump does not occurs.
    It looks strange.Please help me to resolve the issue.

    In my pro*c program , i have used a cursor to fetch the set of accounts.Once cursor is opened , code will perform set
    of operation using fetched data and then cursor is closed. Between open and closing of cursor , i have used 23 EXEC
    SQL CLOSE. For example i am copying the value of a to b using strlcpy between fetch and close cursor statement.If
    returned value from strlcpy is greater than size of destination variable, then flow should not proceed , in that case I will
    close the cursor using EXEC SQL CLOSE and return the flow to calling program. Similarly i have closed the cursor at
    another 22 locations.
    When i compile the code and run binary the core dump occurs. On analyzing the core it shows
    t@null (l@8) terminated by signal SEGV (no mapping at the fault address)
    0xffffffffffffffff: <bad address 0xffffffffffffffff>
    dbx: core file read error: address 0xfc4ffe48 not in data space
    Current function is dbMtBaseClass::Pswd_Change
    7860 sqlcxt(&_dbMtCtx, &sqlctx, &sqlstm, &sqlfpn);
    if I remove any of the three EXEC SQL CLOSE commands , core dump does not occurs.
    It looks strange.Please help me to resolve the issue.

  • Performance of AQ when using callback procedure (using PL/SQL notification)

    I am enqueueing XMLType in AQ.XML file is large in size.NOw I want to dequeue the AQ using PL/SQL notification(using callback procedure which will call DBMS_AQ.DEQUEUE to dequeue the AQ and process the XML.After fetching the data from XML ,I want to store these data in another table columns).
    Please suggest,In this case which approach would be better to dequeue the AQ table :
    1.PL/SQL notification(using callback procedure)
    OR
    2.Scheduling the call to DBMS_AQ.DEQUEUE to dequeue the AQ table
    What would be the impact on performance of above two approaches?

    Hi,
    The question of performance is not down to the technique one employes to enqueue/dequeue, but at a basic level, is relative to the number of messages!
    The is what the Oracle documentation states:
    >
    When persistent messages are enqueued, they are stored in database tables. The performance characteristics of queue operations on persistent messages are similar to underlying database operations. The code path of an enqueue operation is comparable to SELECT and INSERT into a multicolumn queue table with three index-organized tables. The code path of a dequeue operation is comparable to SELECT, DELETE, and UPDATE operations on similar tables.
    >
    So, if anything, the dequeue is a fraction more time & resource consuming. However, it is only a "fraction". You could always add multiple subscribers to dequeue if you want!
    You could ofcourse choose to have non-persistent messages if your application does not need the kind of fault-tolerance that persistent messaging offers, which speed things up, but only a bit, so don't get too excited about it!
    There are other things to consider however, which you may wish to read up on before getting bogged down on whether you should use notification or the scheduler:
    - Is your system clustered?
    - Concurrency on a single queue (i.e. multiple enqueues/dequeues, but single queue)
    - Propogation latency issues
    Read about these and much more at:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14257/perform.htm
    Finally, whether you pl/sql notification or not and whether you use dbms_scheduler is down to your application requirements!
    P;

  • 4.1EA2 User-Defined-Report strips CRLF when using PL/SQL DBMS Output

    Hi,
    I have a report with a child report.
    That child report uses pl/sql to print to the screen. (dbms output)
    When i use the procedure manually it prints fine.
    When i copy this output to a text editor i can see the CRLF in there.
    If i call the same procedure tru the reports section of SQLDeveloper the output is stripped of any CRLF characters.
    This is causing it to be useless for me: i am using it to generate code and it all appears as one big line on the screen.
    Copying this to a text editor indeed shows all CRLFs gone.
    Is this intentional or a bug ?

    Jeff,
    Thnx for the answer.
    I don't have a problem writing html in my code being a former webdeveloper with experience in apex as well.
    The problem is that the option presents itself as a standard plsql dbmsoutput, which suggests identical output as a dbmsoutput pane in sqldeveloper.
    From your answer i gather it really is supposed to do html formatting.
    Your "solution" of inserting br tags would be fine if it weren't for the fact that when i do a copy of the output in this report pane sqldeveloper strips away the br tags but doesn't replace them with crlf's.
    And since the crlfs that were in the output are also stripped in this result pane i get a single line of text when i copy over a page of text from the result pane into a normal texteditor.
    As such it behaves differently then say a browser when i copy a page of text from the browser and paste it in a text editor. There i see the crlfs that were present in the original source.
    Is there a listing somewhere that explains what tags are supported?
    Or CSS ?
    Does it support stuff like white-space: pre ?
    I understand the usefullness of a html-aware plsql dbmsoutput output option in the reports list of a user-defined report.
    However i would like to use this opportunity to advocate to include , as an extra option or tick box etc., an option to just display the output as the normal dbmsoutput pane displays it.
    That is without extra formatting.
    I like the idea of being able to click in the table section above and to have bottom pane generate the appropriate code as output.
    That  use-case can not happen right now since it formats as html (and not even the correct way) or, when going along with this route, strips everything to a single line of text when copying the data from the result pane.
    rgrds mike

  • ODP bug with generated SQL script when using DateTime

    With EF5, I'm getting some really weird SQL scripts when dealing with DateTime.
    THe follow script works fine.
    var a = db.MOTOR_POOL_RESERVATION
    .Where(o => o.DEPART_DT > new DateTime(2013, 1, 1))
    .Select(o => o.RESERVATION_ID)
    .ToList();
    SELECT "Extent1"."RESERVATION_ID" AS "RESERVATION_ID"
    FROM "MOTORPOOL"."MOTOR_POOL_RESERVATION" "Extent1"
    WHERE ("Extent1"."DEPART_DT" > TO_TIMESTAMP('2013-01-01 00:00:00.000', 'YYYY-MM-DD HH24:MI:SS.FF'))
    But as soon as I create DateTime with year, month or day values forming from a variable, then generated scripts become incorrect.
    var year = 2013;
    var month = 3;
    var dt = new DateTime(year, month, 1);
    var c = db.MOTOR_POOL_RESERVATION
    .Where(o => o.DEPART_DT > dt)
    .Select(o=>o.RESERVATION_ID)
    .ToList();
    see the date is treated a string.
    SELECT "Extent1"."RESERVATION_ID" AS "RESERVATION_ID"
    FROM "MOTORPOOL"."MOTOR_POOL_RESERVATION" "Extent1"
    WHERE ("Extent1"."DEPART_DT" > '2013-03-01 00:00:00')
    var b = db.MOTOR_POOL_RESERVATION
    .Where(o => o.DEPART_DT > new DateTime(year, month, 1))
    .Select(o => o.RESERVATION_ID)
    .ToList();
    same problem with this one.
    SELECT "Extent1"."RESERVATION_ID" AS "RESERVATION_ID"
    FROM "MOTORPOOL"."MOTOR_POOL_RESERVATION" "Extent1"
    WHERE ("Extent1"."DEPART_DT" > '2013-03-01 00:00:00')

    It turns out that the sql is valid since I'm using bind parameters.

  • Determine NIF port used by VIF when configured in a port-channel

    I have recently just watched an excellent Cisco Live video on UCS performance troubleshooting which demonstrated how to trace network traffic within Cisco UCS. The speaker made a comment though, in order to determine which NIF is used by a VIF when port-channels are used between the FEX and FI there are different commands to run. Have to review the hash result or something he said. Unfortunately he never went into what these commands were.
    So when we have veths pinned to port-channels instead of HIFs and NIFs, what commands will show which path is being used?

    Duplicate of https://supportforums.cisco.com/discussion/12313436/determine-nif-port-used-vif-when-configured-port-channel

Maybe you are looking for

  • Printer CD will not install software and drivers

    Laptop: Acer Aspire 3690 series Model: BL50 OS: Windows Vista SP2 Home Basic (32 bit) Printer: HP Desktop F4100 series *To my knowledge both laptop and printer are old models, with the laptop being as old as 7 years. Short Story: After formatting my

  • If i already have a data carrier setting in my iphone 4, and i want a upgrade for the setting via itunes, will it write over my existing settings?

    If i already have a data carrier setting in my iphone 4, and i want a upgrade for the setting via itunes, will it write over my existing settings?

  • Conditions for Contract and SA

    Hi I have prcing proceure attached to schema and vendor. But when I go to create a scheduling agreement and in item conditions I do not find those conditions which i find in standard PO. Even in Purchace Info Record conditions I am not able to find t

  • HDMI capture card for my Power mac G5

    I was wondering if anyone knew if there is a HDMI capture card that could be used in a non-intel G5? or capture via the ethernet port using a HDMI Ethernet extender? I would like to capture uncompress HD footage from my camera. My system: 1.8 GHZ DP

  • UseTitleasLabel

    Hello, I am creating a search results page and am attempting to use the 'usetitleaslabel' modifier in the 'displayed properties' of the collection renderer for displaying the custom properties in the results. This is only giving me the id of the prop