Data Truncated Warning

Hi,
Im getting following ODBC warning while connecting with TT database.
I understood its thrown after SQLDriverConnect() in my application.
This error was noticed after changing my DSN.
[TimesTen][TimesTen 7.0.2.0.0 CLIENT] Data truncated. ODBC Error/Warning = 01004, TimesTen Error/Warning = 0
Both the server dsn connection character set is JA16SJIS .
Connection is done and I could do operations on the DB .
Thanking in advance
sanal

Hi thanks ,
This is the connection.DLL contains the following method
int getConnection(SQLHENV henv,SQLHDBC hdbc,char * dsn){
     SQLRETURN rc = SQL_SUCCESS; //* General return code for the API
     SQLHSTMT hstmt = SQL_NULL_HSTMT; //* Statement handle
     SQLCHAR connOut[255];// Buffer for completed connection string
     SQLSMALLINT connOutLen;//Number of bytes returned in ConnOut
     SQLCHAR connStr = (SQLCHAR)dsn;//Connection string
     /* FOR LOGGING THE MESSAGE IN THE LOG*/
     logMessage('D', __FILE__, "getConnection", __LINE__, "Entering connection"); //logging a 'DEBUG'
     rc = SQLAllocEnv(henv);
     if (rc != SQL_SUCCESS){
          logMessage('E', __FILE__, "getConnection", __LINE__, "Unable to allocate an environment handle!");
          exit(1);
     logMessage('D', __FILE__, "getConnection", __LINE__, "Allocating Connection Handle"); //logging a 'DEBUG'
     rc = SQLAllocConnect(*henv, hdbc);
     if (rc != SQL_SUCCESS){
          printf("unable to allocate connection handle hdbc");
     chkReturnCode(rc, *henv, SQL_NULL_HDBC, SQL_NULL_HSTMT, "Unable to allocate a connection handle\n", __FILE__, __LINE__, 1);
     logMessage('D', __FILE__, "getConnection", __LINE__, "Creating the connection"); //logging a 'DEBUG'
     rc = SQLDriverConnect(*hdbc, NULL,connStr, SQL_NTS,connOut, sizeof(connOut),&connOutLen,SQL_DRIVER_NOPROMPT);\
     chkReturnCode(rc, henv, hdbc, SQL_NULL_HSTMT, "Error in connecting to the data store\n", __FILE__, __LINE__, 1);
     return rc; // Connection will be closed in the calling program
Im passing the env and connection handles from my calling program as follows
rc=getConnection(&henv,&hdbc,connStr);
where connStr="DSN=sanal_dsn;PermSize=64"
even if rc =1 ,surprisingly connection is there and i can do operations on DB.
thanks for ur time,
sanal

Similar Messages

  • Error when executing statement for table/stored proc  DB2 - Data Truncation

    Hi,
      I have one call sp in XI with n parameters int and two parameters out.
       well, to implement the interface gives the following error
    com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SPSAPAR9' (structure 'Statement'): java.sql.SQLException: The number of parameter values set or registered does not match the number of parameters
    Thanks for your help
    Ximena
    Edited by: Ximena Gonzalez on Feb 19, 2008 11:50 AM
    Edited by: Ximena Gonzalez on Feb 20, 2008 12:17 PM

    My Error is change
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SAPPRG.SPSAPAR9' (structure 'Statement'): java.sql.DataTruncation: Data truncation
    but de change DT SP
    <?xml version="1.0" encoding="UTF-8" ?>
    <ns1:AlistReqDet2_MT xmlns:ns1="urn:proxl:tmuc:proxl01:AlistReqItems">
    <Statement>
    <SPSAPAR9 action="EXECUTE">
      <table>SAPPRG.SPSAPAR9</table>
      <ISAPNU1 isInput="TRUE" type="STRING">0080000353</ISAPNU1>
      <ISAPEM1 isInput="TRUE" type="STRING">'LU'</ISAPEM1>
      <ISAPC05 isInput="TRUE" type="STRING">15353</ISAPC05>
      <ISAPSEC isInput="TRUE" type="STRING">10</ISAPSEC>
      <ISAPLOT isInput="TRUE" type="STRING">'lats'</ISAPLOT>
      <ISAPCA1 isInput="TRUE" type="STRING">10</ISAPCA1>
      <ISAPCA2 isInput="TRUE" type="STRING">10</ISAPCA2>
      <ISAPKIL isInput="TRUE" type="STRING">10</ISAPKIL>
      <ISAPES1 isInput="TRUE" type="STRING">'T'</ISAPES1>
      <ISAPSW isOutput="TRUE" type="STRING" />
      </SPSAPAR9>
      </Statement>
      </ns1:AlistReqDet2_MT>

  • Data truncation: Out of range value adjusted for column

    I encountered the following error while working thru "Creating Your First LiveCyle ES Application" and have not been able to find a solution. Any assistance would be greatly appreciated.
    javax.ejb.TransactionRolledbackLocalException: Data truncation: Out of range value adjusted for column 'loanamount' at row 1; CausedByException is:
    Data truncation: Out of range value adjusted for column 'loanamount' at row 1
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:247)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:335)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    at org.jboss.ejb.Container.invoke(Container.java:873)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    at $Proxy284.writeObject(Unknown Source)

    hmm, i have sloved the error already. I have make my longtitude double(40,20).

  • Is there any way to restore data truncated with TRUNCATE query in Oracle9i

    Hi, Is there any way to restore data truncated with TRUNCATE query in Oracle9i DB...
    Thanks in advance...

    Hi,
    you can flash back DML queries like insert, update
    but it is not possible for some DDL like truncate, alter, and and drop columns etc that change structure of table.
    e.g.
    SQL> select * from t2;
    C1
    3
    SQL> select dbms_flashback.get_system_change_number from dual;
    GET_SYSTEM_CHANGE_NUMBER
    496378
    SQL> truncate table t2;
    Table truncated.
    SQL> select * from t2 as of scn(496378);
    select * from t2 as of scn(496378)
    ERROR at line 1:
    ORA-01466: unable to read data - table definition has changed
    Andrey

  • "Data truncation: Incorrect datetime value" Error Message

    Hello,
    I'm running Coldfusion 8 with a MySQL database. The s10Date
    column is of type "datetime".
    What would cause the following error to occur when I'm
    entering data into the database?
    Data truncation: Incorrect datetime value: '{ts '2008-09-03
    17:16:01'}' for column 's10Date' at row 1
    The error occurred in
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\components\DataMgr\DataMgr.cfc:
    line 1602
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\components\DataMgr\DataMgr.cfc:
    line 1170
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\components\DataMgr\DataMgr.cfc:
    line 1633
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\parsed\quest_c_registrations.processregistr ationform.cfm:
    line 37
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\parsed\quest_c_registrations.processregistr ationform.cfm:
    line 5
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\parsed\quest_c_registrations.processregistr ationform.cfm:
    line 1
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\fusebox5\Application.cfc:
    line 228
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\fusebox5\Application.cfc:
    line 218
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\fusebox5\fusebox5.cfm:
    line 57
    Called from
    C:\ColdFusion8\wwwroot\Websites\questnbs.info\index.cfm: line 12
    1600 : <cfquery name="qQuery"
    datasource="#variables.datasource#" username="#variables.username#"
    password="#variables.password#"><cfloop index="i" from="1"
    to="#ArrayLen(aSQL)#" step="1"><cfif IsSimpleValue(aSQL
    )><cfset temp =
    aSQL>#Trim(PreserveSingleQuotes(temp))#<cfelseif
    IsStruct(aSQL
    )><cfset aSQL = queryparam(argumentCollection=aSQL
    )><cfswitch
    expression="#aSQL.cfsqltype#"><cfcase
    value="CF_SQL_BIT"><cfif aSQL
    .value>1<cfelse>0</cfif></cfcase><cfcase
    value="CF_SQL_DATE">#CreateODBCDateTime(aSQL.value)#</cfcase><cfdefaultcase><cfif
    ListFindNoCase(variables.dectypes,aSQL
    .cfsqltype)>#Val(aSQL.value)#<cfelse><cfqueryparam
    value="#aSQL
    .value#" cfsqltype="#aSQL.cfsqltype#" maxlength="#aSQL
    .maxlength#" scale="#aSQL.scale#" null="#aSQL
    .null#" list="#aSQL.list#" separator="#aSQL
    .separator#"></cfif></cfdefaultcase></cfswitch></cfif>
    </cfloop></cfquery>
    1601 : <cfelse>
    1602 : <cfquery name="qQuery"
    datasource="#variables.datasource#"><cfloop index="i"
    from="1" to="#ArrayLen(aSQL)#" step="1"><cfif
    IsSimpleValue(aSQL)><cfset temp = aSQL
    >#Trim(PreserveSingleQuotes(temp))#<cfelseif
    IsStruct(aSQL)><cfset aSQL
    = queryparam(argumentCollection=aSQL)><cfswitch
    expression="#aSQL
    .cfsqltype#"><cfcase value="CF_SQL_BIT"><cfif
    aSQL.value>1<cfelse>0</cfif></cfcase><cfcase
    value="CF_SQL_DATE">#CreateODBCDateTime(aSQL
    .value)#</cfcase><cfdefaultcase><cfif
    ListFindNoCase(variables.dectypes,aSQL.cfsqltype)>#Val(aSQL
    .value)#<cfelse><cfqueryparam value="#aSQL.value#"
    cfsqltype="#aSQL
    .cfsqltype#" maxlength="#aSQL.maxlength#" scale="#aSQL
    .scale#" null="#aSQL.null#" list="#aSQL
    .list#"
    separator="#aSQL.separator#"></cfif></cfdefaultcase></cfswitch></cfif>
    </cfloop></cfquery>
    1603 : </cfif>
    1604 :
    Thank you in advance for your assistance.
    Simon

    Just a note, I had the same problem and resolved it by making
    sure my cfsqltype in cfqueryparam is cf_sql_timestamp instead of
    cf_sql_datetime (which is not a valid value).
    Also, just a note that when working with a datetime value in
    cfqueryparam, using cf_sql_date for cfsqltype will truncate the
    time to 00:00:00.

  • Com.mysql.jdbc.MysqlDataTruncation: Data truncation

    Hi, i have these error
    com.mysql.jdbc.MysqlDataTruncation: Data truncation: Out of range value adjusted for column 'longtitude' at row 1
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2932)
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1616)
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1708)
    at com.mysql.jdbc.Connection.execSQL(Connection.java:3255)
    at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1293)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1566)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1480)
    at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:1465)
    at dao.PlacemarkDAO.add(PlacemarkDAO.java:52)
    at web.AddPlacemarkServlet.processRequest(AddPlacemarkServlet.java:70)
    at web.AddPlacemarkServlet.doGet(AddPlacemarkServlet.java:86)
    in my database, i have declare longtitude as double(255,30) but i still dont know why got error data truncation? Can anyone please guide me?

    hmm, i have sloved the error already. I have make my longtitude double(40,20).

  • Data truncation

    We are on oracle version 9.2.0.7. Our application is web based and we use Oracle thin client (ojdbc14.jar) to connect to database. We have a dblink to a SQL server 7.0 database. When we use ojdbc14.jar for 9.2.0.5 there is no problem. If we use version 9.2.0.8 or higher there is data truncation on some fields. Query is very simple and no functions are used in the query. Please help.

    Trying to understand the problem,
    + If you are connecting to SQL server 7.0 through Oracle are you using Oracle Gateway
    to connect to a different kind of server?
    Now about the database & data
    + What is the character set of SQL server?
    + What is the character set of the Database?
    + What is the type on the field that you are selecting?
    + What is the size of data that you are trying to select?
    regards,
    Ashok

  • SQLException - Data truncated error

    How do we trap the column name responsible for the Data Truncation in an INSERT stmt , after the SQLException has been caught ... ??

    You might not be able to.
    The text of the exception might be all you get.
    However, you might check the getNextException() method of the SQLException.
    You might also look at getWarning() on the Statement instance as well.

  • How can I disable meta data sending warning? I want to accept every meta data without asking.

    How can I disable meta data sending warning? I want to accept every meta data without asking.

    Do you mean the message about resending POST data if you use the Back button to go to a previously visited page?
    You can't suppress that message.

  • Forcing a Truncation warning in string to be error

    Hi,
    If let say my source table has column with varchar(20) and my destination table has a column of varchar(5), I want SSIS to force to an error because of the truncation detected. Is it possible?
    Currently, warning is shown at design time that there is truncation but when package is run, the truncated data still gets inserted to destination.
    cherriesh

    If the value exceeds the allowed length it will fail.
    There is nothing like a C++ compiler flag in SSIS that would treat warnings as errors. Yet, it will never run under the circumstances you are asking for, it merely does not make sense.
    Arthur My Blog

  • Regarding data truncation

    Hello,
    I have a currency field in the backend ( CURR 13 ). The data stored in the table is say 34.838.839,00.
    Now when I extract this field to BW, I can see the data in PSA as required.
    But when it gets loaded to the master data infoobject, the data is seen as 3483884.
    The infoobject corresponding to this field is of type NUMC 14. I cannot make it of type CURR as it is should be a characteristic, not a key figure.
    I believe this is because of a conversion routine problem.
    Could someone help me out pls?
    Regards,
    Suraj

    Thanks for your reply
    Why do you have to do that on your own? It's the databases task to correctly truncate a String, if necessary (and inform you of the fact by issuing a Warning).
    But when i insert a string of size greater than 100 bytes i am getting an SQL Exception.
    Also, is the size of the text field really restricted by the number of bytes instead of the number of characters? I've seen that in some DBs (can't remember which ones), but it's a pretty bad idea and fortunately not all do it that way.
    I am using Oracle9i and the size of text field is restricted by the number of bytes.
    Also, your code assumes that the database uses the same encoding as the default locale of the machine running your code. Workaround: find out the encoding of the Database and use that when calling getBytes().Points taken. Thanks.

  • PDF data truncated

    Hi All,
    I am trying to convert the Spool data to PDF and sending it as email. The email has sent sucessfully, but the problem here is the data is getting truncated. But in spool I can see all the fields displayed. Where as in PDF some fields are getting truncated.  When I run my spool request using standard program "RSTXPDFT4", I am getting the same problem. Please help me if any one has some idea regarding this.
    Here I am sending the code which I am using for this.
    *....Convert Spool to PDF
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = G_SPOOL_NUM
          NO_DIALOG                = 'X'
          DST_DEVICE               = G_PDEST
        IMPORTING
          PDF_BYTECOUNT            = NUMBYTES
        TABLES
          PDF                      = PDFDATA
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
      LOOP AT PDFDATA.
        TRANSLATE PDFDATA USING ' ~'.
        CONCATENATE GD_BUFFER PDFDATA INTO GD_BUFFER.
      ENDLOOP.
      TRANSLATE GD_BUFFER USING '~ '.
      DO.
        IT_MESS_ATT = GD_BUFFER.
        APPEND IT_MESS_ATT.
        SHIFT GD_BUFFER LEFT BY 255 PLACES.
        IF GD_BUFFER IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    Creating the document to be sent
      DOC_CHNG-OBJ_NAME = 'IG Balance'.
      DOC_CHNG-OBJ_DESCR = 'IG Balance Confirmation Report'.
      OBJTXT = 'Thanks & Regards'.
      APPEND OBJTXT.
      OBJTXT = 'P.K'.
      APPEND OBJTXT.
      OBJTXT = '+91-9'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 2560 + STRLEN( OBJTXT ).
    Creating the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND OBJPACK.
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'IG Balace.PDF'. APPEND OBJHEAD.
    Creating the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'PDF'.
      OBJPACK-OBJ_NAME   = 'ATTACHMENT'.
      OBJPACK-OBJ_DESCR = 'IG Balance Report'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK..
    Entering names in the distribution list
      RECLIST-RECEIVER = 'p.com'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
      RECLIST-RECEIVER = 'j.com'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    Regards.
    JR.
    Message was edited by:
            Jayant

    I am able to generate a PDF,but it gets truncated.
    In the place where its expected to display 200 CHARACTERS,
    it displays only 85 CHARACTERS.
    REST is TRUNCATED.
    Any more solutions???
    I am looking at a solution to overcome TRUNCATION.........
    Helpfule replies will be awarded for sure
    Message was edited by:
            Jayant

  • Regarding TXT File data truncation due to large amount of data

    Hi Guys,
    I am downloading data to txt.file in background.I am getting truncation of the records due to large amount of data. If it is less data it works good.
    I have checked the Internal table SIZE for this and anywhy i have declared in OCCURS 0 only.
    So please help me to find out what may this reason.I am confuced is there any limitation for TXT file??
    Please help me guys..
    Thanks in advance..
    Prabhu.R

    Hi Rakesh,
    two ways.
    1. Ask ur BASIS team to increase the memory level.
    2. Check the PACKAGE SIZE option of select statement
    Here u  won't select all the data once but in packets of specified size. So get the packets of data and process.
    Just press F1 on package size. That explanation will be enough to proceed further.
    Thanks,
    Vinod.

  • How do I use oracle.jbo.domain.Date truncate() method?

    Hello -
    I want to get the equivalent of "trunc(SYSDATE)" in the form of an oracle.jbo.domain.Date instance.
    I think I can do this by getting the current date and truncating the time portion:
    Date myDate = Date.getCurrentDate();
    myDate.truncate(some_precision_string);
    Issue is: what do I use for the precision string? (Javadoc for class (and its parent) is not helpful...)
    Thanks,
    -- Scott

    Nevermind. Apparently these methods don't really exist.
    (Although documentation in 9.0.3.3 JDev under Help -> Help Topics -> Contents Tab -> Reference -> Business Components Oracle Domains (this one is a javadoc page) say that they do....)

  • File name truncation warning on Save for Web (For Macintosh browsers?) (CS2)

    Image (Line drawing). Save for Web (*gif). Receive following warning:
    "Some names of the files being saved will be truncated to 31 characters for compatibility with Macintosh browsers. To change your filename compatibility options, click the Optimize pop-up menu, choose Output Settings, and select Saving Files."
    I could not find the Optimize pop-up menu. Therefore, I did not do this step.
    After save, I simply went to the appropriate folder and changed the file name to what I originally wanted (i.e., essentially correcting the truncation).
    Big deal or not? Will all be OK?
    Thanks in advance. From a novice.
    K. Glenn Cole, President
    Wilmot Company, Inc.

    You can probably safely turn off that Macintosh compatibility setting now.
    It's a bit tricky to find those settings...  Here's how.
    First, in the Save For Web dialog, hit the little icon at the upper-right and choose Edit Output Settings.
    Then change the selector to Saving Files and look for the settings you want to change as shown here:
    I captured the above from PS CS6, but I think they're substantially the same.
    -Noel

Maybe you are looking for

  • G3 won't recognize Internal IDE hard drive!

    I'm trying to resuscitate a B&W G3 mac (rev. 1) from a Goodwill, and I've gotten it to boot from a G3 installation CD with OS 8 on it, but it won't recognize the sole 27GB IBM ATA/IDE drive I have plugged into it. (The previous owner held onto the ma

  • Want to save the alv output in local file

    Hi, i want to save the alv output to local file throuh menu. in out put system>LIst>save using oops alv Regards Jagadeeshwar.B

  • Silverlight on iPod Touch 3G

    I have the iPod Touch 3G 32GB and really like it. I am frustrated though as I can't listen to my local radio station. One time it put up a notice that I needed Silverlight and another time it said I needed Windows Media Player. Can I install either o

  • Small network, two VLANs, need some guidance

    Hello. Big-time newbie here. I have a Cisco 2801 router and a few Cisco SG200-26 switches. I need to configure two VLANs: vlan10 for public wifi access and vlan20 for private staff use. I have fa0/0 configured with IP 192.168.1.2/24. This interface w

  • HI All, send me flow chart for whole mi process from client to backend sys

    HI All, send me flow chart for whole mi process from client to backend system . means that The process  whe the synchronization is trigerred on a client device . Pls its Urgent .pls send ASAP. Thanks&Regards. Bharat Kumar .