In data packet level error like red and .......... like symbol  how  r?

hi expert,
in data packet level error like red and .......... like symbol  how  would i rectified
this type error please expert give me solution  i will be give point  friends bye

Hi
        If it is the delta update,make the status of that on as STATUS NOT OK and repeat the infopackage again.if it is full run the IP simply.check the data has came to PSA or not,if it has came u push it manually to targets

Similar Messages

  • Data flow task error failed validation and return validation status "VS_NEEDSNEWMETADATA"

    I have ETL with ~800 tables that I moving from Oracle to SQL Server (Prod Oracle -> Prod SQL)
    Now the Oracle/SQL new version was came from vendor that I need to test, and for that I created new DEV environments for Oracle and SQL , the update includes updated new columns in exists tables and new tables . (DEV Oracle -> DEV SQL)
    So what I tried to do is to take the old ETL(PROD) to change the connection to DEV servers.
    Then I executing the packages from local laptop it's working, and if I trying to execute the packages from job schedule it's giving me errors : "Data flow task error failed validation and return validation status "VS_NEEDSNEWMETADATA"
    I went to each table to check the columns if something different, and I was dropping some of the tables and recreated them in the destination but the error still shows. I also tried to change the package to "DelayValidation" to True but without
    success.

    I do not understand the difference between "... if I going to change the Connection Manager to new connection" and "didn't change the Connection Manager, only changed inside the Server name / user/ pass" 800 tables.
    What I see is some tables your packages sees in Dev (laptop) is not of the same schema once the package is deployed hence the metadata error.
    Arthur
    MyBlog
    Twitter

  • I got the new iPhone 5C. In my cellular settings, under "Use cellular data for", it only show passbook and facetime. How can I add other apps? Also, my carrier is AT&T

    I got the new iPhone 5C. In my cellular settings, under "Use cellular data for", it only show passbook and facetime. How can I add other apps? Also, my carrier is AT&T

    Hello Sophie59
    You should be able to see two different tabs when setting up the email if you go to Other > Add Mail Account. Once you enter in the email address and password, you should be at the next screen to provide more details about the email as far as incoming and outgoing servers and at the top there will be a blue section to add it in as a POP or IMAP email account. Check out the article below for further troubleshooting and emails setup options.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    Regards,
    -Norm G.

  • Difference b/w DATA TYPE and DATA OBJECT & differences b/w TYPE and LIKE

    hai
    can any one say the differences between Data type and Data Object.
    And also differences between TYPE and LIKE
    thanks
    Gani

    hi,
    _Data Types and Data Objects_
          Programs work with local program data – that is, with byte sequences in the working memory. Byte sequences that belong together are called fields and are characterized by a length, an identity (name), and – as a further attribute – by a data type. All programming languages have a concept that describes how the contents of a field are interpreted according to the data type.
          In the ABAP type concept, fields are called data objects. Each data object is thus an instance of an abstract data type. There are separate name spaces for data objects and data types. This means that a name can be the name of a data object as well as the name of a data type simultaneously.
    Data Types
       As well as occurring as attributes of a data object, data types can also be defined independently. You can then use them later on in conjunction with a data object. The definition of a user-defined data type is based on a set of predefined elementary data types. You can define data types either locally in the declaration part of a program using the TYPESstatement) or globally in the ABAP Dictionary. You can use your own data types to declare data objects or to check the types of parameters in generic operations.
         All programming languages distinguish between various types of data with various uses, such as ….. type data for storing or displaying values and numerical data for calculations. The attributes in question are described using data types. You can define, for example, how data is stored in the repository, and how the ABAP statements work with the data.
    Data types can be divided into elementary, reference, and complex types.
    a. Elementary Types
    These are data types of fixed or variable length that are not made up of other types.
    The difference between variable length data types and fixed length data types is that the length and the memory space required by data objects of variable length data types can change dynamically during runtime, and that these data types cannot be defined irreversibly while the data object is being declared.
    Predefined and User-Defined Elementary Data Types
    You can also define your own elementary data types in ABAP using the TYPES statement. You base these on the predefined data types. This determines all of the technical attributes of the new data type. For example, you could define a data type P_2 with two decimal places, based on the predefined data type P. You could then use this new type in your data declarations.
    b.  Reference Types
    Reference types are deep data types that describe reference variables, that is, data objects that contain references. A reference variable can be defined as a component of a complex data object such as a structure or internal table as well as a single field.
    c. Complex Data Types
    Complex data types are made up of other data types. A distinction is made here between structured types and table types.
    Data Objects
          Data objects are the physical units with which ABAP statements work at runtime. The contents of a data object occupy memory space in the program. ABAP statements access these contents by addressing the name of the data object and interpret them according to the data type.. For example, statements can write the contents of data objects in lists or in the database, they can pass them to and receive them from routines, they can change them by assigning new values, and they can compare them in logical expressions.
           Each ABAP data object has a set of technical attributes, which are fully defined at all times when an ABAP program is running (field length, number of decimal places, and data type). You declare data objects either statically in the declaration part of an ABAP program (the most important statement for this is DATA), or dynamically at runtime (for example, when you call procedures). As well as fields in the memory area of the program, the program also treats literals like data objects.
            A data object is a part of the repository whose content can be addressed and interpreted by the program. All data objects must be declared in the ABAP program and are not persistent, meaning that they only exist while the program is being executed. Before you can process persistent data (such as data from a database table or from a sequential file), you must read it into data objects first. Conversely, if you want to retain the contents of a data object beyond the end of the program, you must save it in a persistent form.
    Declaring Data Objects
          Apart from the interface parameters of procedures, you declare all of the data objects in an ABAP program or procedure in its declaration part. These declarative statements establish the data type of the object, along with any missing technical attributes. This takes place before the program is actually executed. The technical attributes can then be queried while the program is running.
         The interface parameters of procedures are generated as local data objects, but only when the procedure is actually called. You can define the technical attributes of the interface parameters in the procedure itself. If you do not, they adopt the attributes of the parameters from which they receive their values.
    ABAP contains the following kinds of data objects:
    a.  Literals
    Literals are not created by declarative statements. Instead, they exist in the program source code. Like all data objects, they have fixed technical attributes (field length, number of decimal places, data type), but no name. They are therefore referred to as unnamed data objects.
    b.  Named Data Objects
    Data objects that have a name that you can use to address the ABAP program are known as named objects. These can be objects of various types, including text symbols, variables and constants.
    Text symbols are pointers to texts in the text pool of the ABAP program. When the program starts, the corresponding data objects are generated from the texts stored in the text pool. They can be addressed using the name of the text symbol.
    Variables are data objects whose contents can be changed using ABAP statements. You declare variables using the DATA, CLASS-DATA, STATICS, PARAMETERS, SELECT-OPTIONS, and RANGESstatements.
    Constants are data objects whose contents cannot be changed. You declare constants using the CONSTANTSstatement.
    c.  Anonymous Data  Objects
    Data objects that cannot be addressed using a name are known as anonymous data objects. They are created using the CREATE DATAstatement and can be addressed using reference variables.
    d.  System-Defined Data Objects
    System-defined data objects do not have to be declared explicitly - they are always available at runtime.
    e.  Interface Work Areas
    Interface work areas are special variables that serve as interfaces between programs, screens, and logical databases. You declare interface work areas using the TABLES and NODESstatements.
    What is the difference between Type and Like?
    Answer1:
    TYPE, you assign datatype directly to the data object while declaring.
    LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly.
    Answer2:
    Type is a keyword used to refer to a data type whereas Like is a keyword used to copy the existing properties of already existing data object.
    Answer3:
    type refers the existing data type
    like refers the existing data object
    reward if useful
    thanks and regards
    suma sailaja pvn

  • Itunes continues to crash and I get the Data Execution Prevention error from Windows and it shuts down. How do I fix my Itunes?? This startes happening after the Itunes update

    Itunes continues to crash and I get a Data Execution Prevention error.

    Vista 64 bit
    Many thanks. If you're still not launching after your complete uninstall/reinstall, we'll go searching for old QuickTime componentry stashed in non-standard locations on the PC.
    First we'll need to change some view settings.
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Now in Computer, open your C:\ drive (or whichever drive you have your operating system installed on).
    Open the "Windows" folder.
    Open the "SysWOW64" folder.
    What files and folders can you see in there with QuickTime in the title? (In a standard installation of Quicktime you should be seeing precisely two files ... QuickTime.qts and QuickTimeVR.qtx ... and no QuickTime folders whatsoever.)

  • After data file recovery, files are red and won't open

    My HD crashed so I used Data Rescue 3 to recover my files. It worked but now all the files are highlighted red and won't open. The file sizes look right but for instance when I try to open a mov file it says, this is not a movie file. My FCP projects won't open either. Does anybody know what the problem is and what I need to do to get the files usable again?

    Data recovery can be hit and miss. Data Rescue is unlikely to be able to recover every single byte from every single file. If so much as a single byte is out of place, QuickTime will be unable to read the file.
    I would suggest you give QT Repair a try and if that doesn't work, try File Salvage:
    http://www.digitalrebellion.com/fcs_maintenance.htm
    (standard disclaimer: I may receive compensation, financial or otherwise, from my recommendation)

  • When trying to print I get error code 30892 and authentication required how do I fix this?

    I am new to my Mac and am having trouble printing.  I keep getting error code -30892 and authentication required and it can't print.  I have sharing features open on both my PC and my Mac.  Any suggestions?

    Doesn't sound like any error number I'm familiar with. What's your set-up? Are you using a print server?

  • Oracle WCI - Facebook like comments and like option.

    Hi,
    We are showing top stories on the home page of our portal, which keeps on changing. Now the required is to have functionality to comments on the stories and like feature same as that is availabe on facebook. Is it possible to create in WCI with IDK ot will have to use WebCentre Services...In case will ahve to use webcentre services then what should be the apprach..esembler will be required then to host the services in WCI?
    Any guidance will be helpful.
    Thanks!!

    I think it is in the install guide.
    This is from the KB:
    Applies to:
    Oracle WebCenter Interaction - Version: 6.5.0 and later [Release: and later ]
    Information in this document applies to any platform.
    Goal
    This article provides instructions on configuring the Activity Service and answers questions such as "How to configure the Activity Service database?", or "What needs to be entered into the configuration manager?"
    The Activity Service Portlets are part of the Webcenter Interaction Portal Product. Below are suggested instructions on configuring Activity service and the components it connects to such as ALUI Directory, Notification, and API.
    Contents:
    Configuring ALUI Directory
    Configuring Aqualogic Notification Service
    Configuring Activity Service
    Service Startup Order
    Troubleshooting Tips
    Solution
    1. Configuring ALUI Directory:
    - You must have the ALI LDAP Service running for activity service (aka. Remote
    portlet service) to run.
    - API Service must be running properly and entered in the correct SOAP URL in
    the Portal Settings : Portal URL Manager Utility. ALI Directory is
    dependent on API Service, Restart API Service, if necessary.
    - You must run the following SQL Scripts against Portal Database:
    \bea\alui\aluidirectory\1.0\sql\ (see README.txt in this folder for more info)
    2. Configuring AquaLogic Notification Service:
    - Make sure you set General Settings : AquaLogic Interaction URL and BEA ALI
    API Service URL (This is not automatically entering upon install).
    3. Configuring Activity Service:
    - You must eyeball and confirm each of the following (Activity Service Database,
    Application Settings, Common Notification Service Client, General Identity
    Services, Logging, Login Tokens, User and Group Directory).
    - Make sure you created your Activity Service Database and configured Configuration Manager to
    point to this database. (No scripts need to be run).
    -Make sure the BEA AL Notification Service is running properly, and it is being pointed to in the configuration manager.
    - If you are getting SAMLKeystore Errors in logs: make sure the settings are
    the following (note these are the default settings and should only be changed if they were mistakely adjusted):
    o Key service default alias : SAML2Keystore
    o Key service passphrase : saml2keystore
    - Make sure you fill the Login Token : Message authentication code seed value:
    String value used to create MAC signatures used to authenticate Login Tokens.
    For portal tokens, this value should match the "login token root key".
    in the PTSERVERCONFIG table in the portal database. Also, the Default Token Type Must be
    ALUI.
    - User and Group Directory Configuration (Authentication provider Must be ALI):
    Host : localhost
    Port : 389
    Principal : uid=administrator,ou=users,dc=bea,dc=com
    Credential (same administrator password used with the portal login)
    Note: You may need to change the HOST above if the ALI Directory is on a seperate
    server from the activity service.
    4. Service Startup Order:
    For Activity Service portlets to function correctly, start services in the following order:
    BEA ALI API Service
    BEA ALI LDAP Directory
    BEA AL Notification Service
    BEA ALI Remote Portlet Service (This runs the activity service)
    5. Troubleshooting Tips:
    Confirm services have all been started in the order described in step 4 "Service Startup Order", and that these services are running.
    Test the ALI Directory using the instructions in the the metalink article entitled, "How can I connect to the ALI/WCI Directory Service through an LDAP browser?".
    Startup Logging Spy utility (PTSPY) on each of the servers running Portal Web Server, ALI API, LDAP Directory, Nortification and Remote Portlet Service (AKA Activity Service). While attempting to load the activity service portlets, collect a PTSPY log from each of the 5 mentioned areas above. These should be collected concurrently while reproducing the problem.
    If there is an error in the Activity Service portlet, see if you can find the error in the portal spy. Note the timestamp and next look in the remote portlet service (activity service) spy for any errors during this time period.
    You may find errors related to areas such as ALI API, Notification, or Directory. You can search for these errors on Metalink to see if there is a related knowledge article.
    Open an Oracle support case in Metalink and provide the 5 PTSPY logs mentioned above with a description of the problem, errors, and any screenshots. Also provide screenshots of all the configuration manager settings described in Steps 1-3.
    References
    NOTE:1163858.1 - WebCenter Interaction Master Note
    NOTE:878956.1 - How can I connect to the ALI/WCI Directory Service through an LDAP browser?
    Related
    Products
    Middleware > WebCenter > Oracle WebCenter Interaction Products > Oracle WebCenter Interaction
    Keywords
    API; CONFIGURATION MANAGER; DIRECTORY; LDAP; NOTIFICATION SERVICES; PORTAL; SERVICES; WEBCENTER INTERACTION
    Back to top

  • Data Guard Broker: errors ORA-16816 and ORA-16817 with Fast Start Failover

    Hi,
    my environment is:
    OS: Windows XP Professional Edition SP2
    DB: Oracle EE 10.2.0.3
    Primary db: orcl
    Standby db: stby
    both databases are running on the same server.
    I have configured Data Guard as described in the DG Administration Guide.
    In the Data Guard Broker I switch to 'stby' succesfully and 'stby' is the primary db and 'orcl' is the standby db.
    I switched back to 'orcl' as primary db and I get some errors:
    DGMGRL> show database 'orcl' statusreport;
    STATUS REPORT
    INSTANCE_NAME SEVERITY ERROR_TEXT
    * WARNING ORA-16817: configuration for Fast Start of Failover is not synchronized.
    DGMGRL> show database 'stby' statusreport;
    STATUS REPORT
    INSTANCE_NAME SEVERITY ERROR_TEXT
    * ERROR ORA-16816: wrong databaserole
    * WARNING ORA-16817: configuration for Fast Start of Failover is not synchronized.
    DGMGRL> show configuration;
    Configuration
    Name: DG1
    Enabled: YES
    Protection Mode: MaxAvailability
    Fast-Start Failover: ENABLED
    Databases:
    orcl - Physical standby database
    - Fast-Start Failover target
    stby - Primary database
    Current status for DG1:
    Warning: ORA-16607: one or more databases failed.
    I have searched for solutions on Metalink and google, but with no success.
    Has anyone got this kind of problem?
    Any suggestions on how to resolve it?
    Thanks

    Hi DigerDBA
    I did your advice , the error disappear, and thanks for your advice , but do I need to keep standby_file_management='AUTO' or 'MANUAL' in primary and standby init files?
    Am asking this because when I use the observer the failover failed and I get the following error
    SQL Execution error=604, sql=[ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY WAIT WITH SESSION SHUTDOWN]. See error stack below.
      ORA-00604: error occurred at recursive SQL level 1
      ORA-01275: Operation ADD LOGFILE is not allowed if standby file management is automatic.
    Complete Failover operation failed in the step when attempting to convert the database to be the new primary.
    Database Resource SetState Error (16771)
    01/07/2014 09:14:43
    Command FAILOVER TO epprod2 completed with error ORA-16771
    if possible can you advice me please?

  • Problem with extract huge data in WEBI (Errors:WIO 30280 and ERR_WIS_30270)

    Hi gurus, need your help.
    When we run the query for the report we get an error in Web Intellegence .
    This error may be two types. And their rotation occurs randomly.
    First error: There is no memory available. Please close document to free memory (WIO 30280)
    Second error: An internal error occurred while calling the 'processDPCommands' API. (ERR_WIS_30270)
    When we try reopen WEB Intelligence, or reloading servers or machine, we have no   any results and get error again.
    I was try change different parametrs in universe designer for connection and universe, in central managment console for WEBI, but it's not solve problem
    This query select data from huge table (4,7 million rows), and when I use limit for maximum rows in WEBI my report working correctly.
    Is there any way to solve these problems associated with large data? What  is invoke this problem when we try to get full data?
    We use Business Objects Enterprise XI 3.1 version 12.4.0.966 
    Our system Windows Server  R2  Enterprise 2008 SP1 (64-bit system), Processor Intel 2.67 GHz (2 processors), RAM 8 Gb.                                                                               
    Thanks.
                                                                                    Ruslan

    Hi Brad,
    here we are talking about XI3.1 which has the limitations inherited from the operating system. as this blog post explains with plenty of details.
    In BI4.0 you can leverage larger datasets without any problems however you need to properly size and configure the services.
    There are several documents out there:
    How to configure the APS  http://scn.sap.com/docs/DOC-31711
    Companion Guide
    https://service.sap.com/~sapdownload/011000358700000307202011E/SBO_BI_4_0_Companion_V4.pdf
    Web Intelligence Sizing Guide
    https://service.sap.com/~sapdownload/011000358700001403692011E/BI_4_0_WEBI_NEW.pdf
    Best regards,
    Simone

  • Images on my iPhone 5 are appearing pixelated in apps like pinterest and instagram. How can I fix this?

    Recently images on my iPhone 5 have begun appearing pixelated in multiple apps, exlcuding facebook. I've tried turning my phone on and off and restarting the apps. Nothing has resolved the issue. Suggestions?

    If Apple replaced the battery, contact them to check the phone, the battery replacement is covered by a warranty.
    iPhone - Contact Support - Apple Support

  • Error in like profile and modeling

    Hi
    could any one make me clear, the difference between like model and like profile,  i know about like profile, i want to know how like model works
    Thanks for supporting me
    Regards
    Deepali

    Dear Deepali
    Please find enclosed herewith the links with detail explanation for
    Like Profile
    http://help.sap.com/saphelp_scm41/helpdata/en/8f/9d6937089c2556e10000009b38f889/frameset.htm
    Like modeling
    http://help.sap.com/saphelp_scm41/helpdata/en/07/873abc4c091d48b725a5500d177524/frameset.htm
    Thanks
    Amol

  • Load hung due to hung data packet

    Hi,
    We are getting problem daily Load hung due to hung data packet.We are doing daily changed the qm status to red and manually updated the datapacket.load completed.Is there any solutions is there to prevent this problem other than manual?
    Sridhar

    hi
    You can try reducing the data packet size of the IP.
    Goto the maintanence of the IP.
    Scheduler menu option --> DataS. Default Data trannfer.
    Now in the pop up window you can see
    MAximum size of a data packet in kByte mentioned for the Full Upload, Delta Upload and Initializing Delta.
    eg. If you are facing the problem in full load
    reduce the data packet size to half.
    save and then execute the IP.
    This will solve your problem.
    Regards
    Shilpa

  • VSS errors 8193, 22, and 12292

    We have a Windows 2012 standard server, and once we renamed the server, we started getting the following VSS errors - 8193, 22, and 12292.  How can I fix this?  The errors are listed below.  Thanks in advance!
    Error 8193 - Volume Shadow Copy Service error: Unexpected error calling routine CoCreateInstance.  hr = 0x80040154, Class not registered
    Error 22 - Volume Shadow Copy Service error: A critical component required by the Volume Shadow Copy service is not registered. This might happened if an error occurred during Windows setup or during installation of a Shadow Copy provider. The error returned
    from CoCreateInstance on class with CLSID {e579ab5f-1cc4-44b4-bed9-de0991ff0623} and Name IVssCoordinatorEx2 is [0x80040154, Class not registered

    Hi,
    Please run "vssadmin list writers" to see if you can find System Writer?
    If no system writer, try to run the command in command prompt:
    SC.EXE SDSHOW EVENTSYETEM
    • If the output is like below, that means it is missing the Service Logon User (missing the entry (A;;CCLCSWLOCRRC;;;SU) )
    D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    • Then you can reset the eventsystem permission:
    Sc.exe sdset eventsystem D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;WD)
    • Restart both the COM+ Event System and Cryptographic Services
    • Run VSSADMIN LIST WRITERS again and see if system writer is back.
    NOTEs:If the problem on your side is indeed related to service permission, you can check the GPO setting on your side to see if there is any change on the COM+ Event System Service.
    If you have any feedback on our support, please send to [email protected]

  • Embedded audio on certain sites like Tumblr and Wikipedia doesn't work.

    I can play video with sound on sites like YouTube and embedded audio clips work on some sites, but recently, I cannot hear embedded sound files on video and audio clips on sites like Tumblr and Wikipedia. How do I fix this?

    Is it just those sites? Any other problems?
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache
    Press the '''<Alt>''' or '''<F10>''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Advanced > Network > Cached Web Content: Clear Now'''
    and
    * Remove Cookies
    Press the '''<Alt>''' or '''<F10>''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Privacy.'''
    Under '''History''', select Firefox will '''Use Custom Settings'''.
    There is a button on the right side called '''Show Cookies'''.
    If there is still a problem,
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''''' {web link}
    While you are in safe mode;
    Press the '''<Alt>''' or '''<F10>''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites and see if there is still a problem. Then restart.

Maybe you are looking for

  • Free Goods being delivered when shouldn't be!!

    Hi All I have a problem and I need some help.  To explain it easier I have outline the scenario below: Free goods (discount type NA00) has been set up for customer Y, sales org 1000 and distribution chanel 12 though VBN1.   It is an exclusive free go

  • My iphone only recieves IMessages from other IPhone users, even if i'm not using imessage at the time.

    So for whatever reason, whenever i text other iphone users, and one of us uses IMessage, my phone will only recieve their texts when i'm connected to wifi, even if we both stop using it. For example, i'll text a friend while temporarily using wifi or

  • Finding the path to Oracle home

    Hi I am trying to get the value of "oracle home" (e.g OraDb11g_home1) and display it within my java program, not sure how to do this. One possible way it to parse the ContentsXML/inventory.xml file. The only drawback I can think of is that a user may

  • Improving performance of query with View

    Hi , I'm working on a stored procedure where certain records have to be eleminated , unfortunately tables involved in this exception query are present in a different database which will lead to performance issue. Is there any way in SQL Server to sto

  • Write in USB of NMH305

    Model NMH305 Is possible to write in attached storage on front USB?