Character is changed from ≤ to =

When I run the following stored procedure with the exec statement following it, the ≤ character is changed to =
Thanks for any suggestions to fix this.
Create PROCEDURE [dbo].[XML_ADDJQTEST]
@objectName
varchar(255),
@xml Text,
@nodeType
varchar(10),
@retval
int output
AS
INSERT INTO dbo.XML
object_Name,
xml,
nodeType
VALUES
@objectName,
@xml,
@nodeType
Select @retval=@@ROWCOUNTCreate PROCEDURE [dbo].[XML_ADDJQTEST]
@objectName
varchar(255),
@xml varchar(500),
@nodeType
varchar(10),
@retval
int output
AS
INSERT INTO dbo.XML
object_Name,
xml,
nodeType
VALUES
@objectName,
@xml,
@nodeType
Select @retval=@@ROWCOUNT
exec XML_ADDJQTEST @objectName = 'jqtest2', @xml = '<test>(ADT ≤ 400)</test>',  @nodeType= 'short', @retVal=''

>I am managing a system that uses this 'xml' table, with the xml field that is actually 'text', and it is a very critical part of the system.
>How difficult do you think it would be to make this change to this table?
1) Identify all the code that accesses this table, so you know what to test after making the change.
2) Decide if you want to use NVARCHAR(MAX) or XML
If you store it as XML then you can query inside the document with TSQL, but you have to parse the document on load.  So useful, but more expensive on load. 
3) Decide if you want to store the XML documents inline in the table, or push them entirely off row.
use
exec sp_tableoption 'xml', 'large value types out of row', 1
To force the documents entirely off row, leaving only a pointer on the row.  This gives you more rows per page, improving the performance of queries that hit this table but don't need to read the document body, but requires an extra IO to read small
documents which would otherwise be stored inline in the row.
Change the data type.  This is simple, but can be expensive if the table is very large.  eg
alter table XML alter column xml nvarchar(max)
David
David http://blogs.msdn.com/b/dbrowne/

Similar Messages

  • CS3 Character Style Changes Color On Save

    Hi All-
    I have a CS3 file where I imported character styles (using the character styles palette -> load character styles) from another file. I apply that style to a type layer, it looks fine (i.e. is applied correctly), then I save the file, and close. Upon opening the file that char. style's color is changed from white to a spot color. Any idea why?
    System: AI CS3 on Windows XP 32bit
    Thanks in advance.
    Tom

    Hi,
    I had a similar problem, which was caused by type having "overrides"
    when applying Character Styles.
    This is indicated by an asterisk appearing in the Character style name in the palette) when you select the type.
    This has something to do with applying a new style to type which already
    has some appearance attributes.
    Found that the solution was to clear overrides when applying a character style to selected type, by Alt-clicking on the new character style.
    Then, hopefully, the character style of the type is saved properly, and displays correctly the next time you open the drawing.
    Bye...
    Andrew

  • JavaScript: changes from CS5.5 to CS6

    Removed
    Classes
    FolioBindingDirectionOptions (enum)
    FolioOrientationOptions (enum)
    SmoothScrollingOptions (enum)
    SpaceUnitType (enum)
    VisibilityInPdf (enum)
    Properties
    Button.visibilityInPdf
    DocumentPreference.masterTextFrame
    DocumentPreset.masterTextFrame
    EPubExportPreference.marginUnit
    EPubExportPreference.spaceUnit
    EPubExportPreference.format
    EPubExportPreference.useTocStyle
    EPubExportPreference.cssExportOption
    EPubExportPreference.externalCSSPath
    HTMLExportPreference.leftMargin
    HTMLExportPreference.rightMargin
    HTMLExportPreference.topMargin
    HTMLExportPreference.bottomMargin
    HTMLExportPreference.marginUnit
    HTMLExportPreference.spaceUnit
    HTMLExportPreference.externalCSSPath
    HTMLExportPreference.linkToJavascript
    HTMLExportPreference.javascriptURL
    ObjectExportOption.customImageAlignment
    ObjectExportOption.spaceUnit
    PagesPanel.verticalView
    StyleSheetExportOption.STYLE_NAME_ONLY
    StyleSheetExportOption.EXTERNAL_CSS
    Methods
    Application.rasterizeDocumentPage()
    Application.exportMiniFolio()
    Application.exportFolioToPackage()
    Application.exportFolioToDirectory()
    Application.exportFolioToDirectoryPackage()
    Application.getAllOverlays()
    Application.createCustomMiniFolio()
    Application.areFilePathsEquivalent()
    Added
    Classes
    AutoSizingReferenceEnum (enum)
    AutoSizingTypeEnum (enum)
    CellStyleMapping
    CellStyleMappings
    CharStyleMapping
    CharStyleMappings
    CheckBox
    CheckBoxes
    ClearFormBehavior
    ClearFormBehaviors
    ComboBox
    ComboBoxes
    ContentPlacerObject
    CustomLayoutTypeEnum (enum)
    DimensionsConstraints (enum)
    EpubVersion (enum)
    FontLockingPreference
    GuideTypeOptions (enum)
    HtmlItem
    HtmlItems
    LayoutRuleOptions (enum)
    LinkedPageItemOption
    ListBox
    ListBoxes
    MapType (enum)
    PNGColorSpaceEnum (enum)
    PNGExportPreference
    PNGExportRangeEnum (enum)
    PNGQualityEnum (enum)
    PageViewOptions (enum)
    PaginationOption (enum)
    ParaStyleMapping
    ParaStyleMappings
    PreviewPagesOptions (enum)
    PrintFormBehavior
    PrintFormBehaviors
    RadioButton
    RadioButtons
    SignatureField
    SignatureFields
    SnapshotBlendingModes (enum)
    StaticAlignmentOptions (enum)
    SubmitFormBehavior
    SubmitFormBehaviors
    TableStyleMapping
    TableStyleMappings
    TextBox
    TextBoxes
    Properties
    AlignDistributeBounds.KEY_OBJECT
    Application.linkedPageItemOptions
    Application.pngExportPreferences
    Application.contentPlacer
    Application.fontLockingPreferences
    Application.paraStyleMappings
    Application.charStyleMappings
    Application.tableStyleMappings
    Application.cellStyleMappings
    Application.selectionKeyObject
    Button.linkedPageItemOptions
    Button.submitFormBehaviors
    Button.clearFormBehaviors
    Button.printFormBehaviors
    Button.printableInPdf
    Button.hiddenUntilTriggered
    Button.horizontalLayoutConstraints
    Button.verticalLayoutConstraints
    Cell.checkBoxes
    Cell.comboBoxes
    Cell.listBoxes
    Cell.radioButtons
    Cell.textBoxes
    Cell.signatureFields
    ChangeGrepPreference.paragraphKashidaWidth
    ChangeObjectPreference.autoSizingType
    ChangeObjectPreference.autoSizingReferencePoint
    ChangeObjectPreference.useMinimumHeightForAutoSizing
    ChangeObjectPreference.minimumHeightForAutoSizing
    ChangeObjectPreference.useMinimumWidthForAutoSizing
    ChangeObjectPreference.minimumWidthForAutoSizing
    ChangeObjectPreference.useNoLineBreaksForAutoSizing
    ChangeTextPreference.paragraphKashidaWidth
    Character.checkBoxes
    Character.comboBoxes
    Character.listBoxes
    Character.radioButtons
    Character.textBoxes
    Character.signatureFields
    Character.paragraphKashidaWidth
    CoordinateSpaces.PAGE_COORDINATES
    DiacriticPositionOptions.OPENTYPE_POSITION_FROM_BASELINE
    Document.linkedPageItemOptions
    Document.paraStyleMappings
    Document.charStyleMappings
    Document.tableStyleMappings
    Document.cellStyleMappings
    Document.checkBoxes
    Document.comboBoxes
    Document.listBoxes
    Document.radioButtons
    Document.textBoxes
    Document.signatureFields
    Document.selectionKeyObject
    DocumentIntentOptions.DPS_INTENT
    DocumentPreference.createPrimaryTextFrame
    DocumentPreset.createPrimaryTextFrame
    EPS.linkedPageItemOptions
    EPS.horizontalLayoutConstraints
    EPS.verticalLayoutConstraints
    EPSText.linkedPageItemOptions
    EPSText.horizontalLayoutConstraints
    EPSText.verticalLayoutConstraints
    EPubExportPreference.externalStyleSheets
    EPubExportPreference.javascripts
    EPubExportPreference.version
    FindChangeTransliterateCharacterTypes.WESTERN_ARABIC_DIGITS
    FindChangeTransliterateCharacterTypes.ARABIC_INDIC_DIGITS
    FindChangeTransliterateCharacterTypes.FARSI_DIGITS
    FindGrepPreference.paragraphKashidaWidth
    FindObjectPreference.autoSizingType
    FindObjectPreference.autoSizingReferencePoint
    FindObjectPreference.useMinimumHeightForAutoSizing
    FindObjectPreference.minimumHeightForAutoSizing
    FindObjectPreference.useMinimumWidthForAutoSizing
    FindObjectPreference.minimumWidthForAutoSizing
    FindObjectPreference.useNoLineBreaksForAutoSizing
    FindTextPreference.paragraphKashidaWidth
    FormField.linkedPageItemOptions
    FormField.horizontalLayoutConstraints
    FormField.verticalLayoutConstraints
    GeneralPreference.mainMonitorPpi
    GeneralPreference.greekVectorGraphicsOnDrag
    GeneralPreference.showConveyor
    GeneralPreference.createLinksOnContentPlace
    GeneralPreference.mapStylesOnContentPlace
    GeneralPreference.useCustomMonitorResolution
    GeneralPreference.customMonitorPpi
    GeneralPreference.previewPages
    Graphic.linkedPageItemOptions
    Graphic.horizontalLayoutConstraints
    Graphic.verticalLayoutConstraints
    GraphicLine.linkedPageItemOptions
    GraphicLine.htmlItems
    GraphicLine.checkBoxes
    GraphicLine.comboBoxes
    GraphicLine.listBoxes
    GraphicLine.radioButtons
    GraphicLine.textBoxes
    GraphicLine.signatureFields
    GraphicLine.horizontalLayoutConstraints
    GraphicLine.verticalLayoutConstraints
    Group.linkedPageItemOptions
    Group.checkBoxes
    Group.comboBoxes
    Group.listBoxes
    Group.radioButtons
    Group.textBoxes
    Group.signatureFields
    Group.horizontalLayoutConstraints
    Group.verticalLayoutConstraints
    Guide.guideType
    Guide.guideZone
    HTMLExportPreference.externalStyleSheets
    HTMLExportPreference.javascripts
    IMEPreference.useNativeDigits
    Image.linkedPageItemOptions
    Image.horizontalLayoutConstraints
    Image.verticalLayoutConstraints
    ImportedPage.linkedPageItemOptions
    ImportedPage.horizontalLayoutConstraints
    ImportedPage.verticalLayoutConstraints
    InsertionPoint.checkBoxes
    InsertionPoint.comboBoxes
    InsertionPoint.listBoxes
    InsertionPoint.radioButtons
    InsertionPoint.textBoxes
    InsertionPoint.signatureFields
    InsertionPoint.paragraphKashidaWidth
    InteractivePDFExportPreference.usePDFStructureForTabOrder
    LanguageAndRegion.INDIC
    Layer.checkBoxes
    Layer.comboBoxes
    Layer.listBoxes
    Layer.radioButtons
    Layer.textBoxes
    Layer.signatureFields
    LayoutWindow.selectionKeyObject
    Line.checkBoxes
    Line.comboBoxes
    Line.listBoxes
    Line.radioButtons
    Line.textBoxes
    Line.signatureFields
    Line.paragraphKashidaWidth
    LinkedStoryOption.applyStyleMappings
    MasterSpread.checkBoxes
    MasterSpread.comboBoxes
    MasterSpread.listBoxes
    MasterSpread.radioButtons
    MasterSpread.textBoxes
    MasterSpread.signatureFields
    MasterSpread.primaryTextFrame
    MediaItem.linkedPageItemOptions
    MediaItem.horizontalLayoutConstraints
    MediaItem.verticalLayoutConstraints
    Movie.linkedPageItemOptions
    Movie.horizontalLayoutConstraints
    Movie.verticalLayoutConstraints
    MultiStateObject.linkedPageItemOptions
    MultiStateObject.horizontalLayoutConstraints
    MultiStateObject.verticalLayoutConstraints
    ObjectExportOption.customLayout
    ObjectExportOption.customLayoutType
    ObjectStyle.enableTextFrameAutoSizingOptions
    Oval.linkedPageItemOptions
    Oval.htmlItems
    Oval.checkBoxes
    Oval.comboBoxes
    Oval.listBoxes
    Oval.radioButtons
    Oval.textBoxes
    Oval.signatureFields
    Oval.horizontalLayoutConstraints
    Oval.verticalLayoutConstraints
    PDF.linkedPageItemOptions
    PDF.horizontalLayoutConstraints
    PDF.verticalLayoutConstraints
    PDFColorSpace.GRAY
    PICT.linkedPageItemOptions
    PICT.horizontalLayoutConstraints
    PICT.verticalLayoutConstraints
    Page.appliedAlternateLayout
    Page.checkBoxes
    Page.comboBoxes
    Page.listBoxes
    Page.radioButtons
    Page.textBoxes
    Page.signatureFields
    Page.layoutRule
    Page.snapshotBlendingMode
    Page.optionalPage
    PageItem.linkedPageItemOptions
    PageItem.horizontalLayoutConstraints
    PageItem.verticalLayoutConstraints
    Paragraph.checkBoxes
    Paragraph.comboBoxes
    Paragraph.listBoxes
    Paragraph.radioButtons
    Paragraph.textBoxes
    Paragraph.signatureFields
    Paragraph.paragraphKashidaWidth
    ParagraphJustificationOptions.NASKH_TATWEEL_JUSTIFICATION
    ParagraphJustificationOptions.NASKH_KASHIDA_JUSTIFICATION
    ParagraphJustificationOptions.NASKH_TATWEEL_JUSTIFICATION_FRAC
    ParagraphJustificationOptions.NASKH_KASHIDA_JUSTIFICATION_FRAC
    ParagraphStyle.paragraphKashidaWidth
    PlaceGun.checkBoxes
    PlaceGun.comboBoxes
    PlaceGun.listBoxes
    PlaceGun.radioButtons
    PlaceGun.textBoxes
    PlaceGun.signatureFields
    Polygon.linkedPageItemOptions
    Polygon.htmlItems
    Polygon.checkBoxes
    Polygon.comboBoxes
    Polygon.listBoxes
    Polygon.radioButtons
    Polygon.textBoxes
    Polygon.signatureFields
    Polygon.horizontalLayoutConstraints
    Polygon.verticalLayoutConstraints
    Rectangle.linkedPageItemOptions
    Rectangle.htmlItems
    Rectangle.checkBoxes
    Rectangle.comboBoxes
    Rectangle.listBoxes
    Rectangle.radioButtons
    Rectangle.textBoxes
    Rectangle.signatureFields
    Rectangle.horizontalLayoutConstraints
    Rectangle.verticalLayoutConstraints
    Section.alternateLayoutLength
    Section.alternateLayout
    Section.pagination
    Section.paginationMaster
    SelectionOptions.SET_KEY
    Snippet.checkBoxes
    Snippet.comboBoxes
    Snippet.listBoxes
    Snippet.radioButtons
    Snippet.textBoxes
    Snippet.signatureFields
    Sound.linkedPageItemOptions
    Sound.horizontalLayoutConstraints
    Sound.verticalLayoutConstraints
    SplineItem.linkedPageItemOptions
    SplineItem.htmlItems
    SplineItem.checkBoxes
    SplineItem.comboBoxes
    SplineItem.listBoxes
    SplineItem.radioButtons
    SplineItem.textBoxes
    SplineItem.signatureFields
    SplineItem.horizontalLayoutConstraints
    SplineItem.verticalLayoutConstraints
    Spread.checkBoxes
    Spread.comboBoxes
    Spread.listBoxes
    Spread.radioButtons
    Spread.textBoxes
    Spread.signatureFields
    StateTypes.UP_ON
    StateTypes.ROLLOVER_ON
    StateTypes.DOWN_ON
    StateTypes.UP_OFF
    StateTypes.ROLLOVER_OFF
    StateTypes.DOWN_OFF
    StaticText.staticAlignment
    Story.paraStyleMappings
    Story.charStyleMappings
    Story.tableStyleMappings
    Story.cellStyleMappings
    Story.checkBoxes
    Story.comboBoxes
    Story.listBoxes
    Story.radioButtons
    Story.textBoxes
    Story.signatureFields
    Story.paragraphKashidaWidth
    StoryWindow.selectionKeyObject
    StyleExportTagMap.splitDocument
    Table.checkBoxes
    Table.comboBoxes
    Table.listBoxes
    Table.radioButtons
    Table.textBoxes
    Table.signatureFields
    TagTextExportCharacterSet.CENTRALEUROPEAN_ISO
    TagTextExportCharacterSet.CYRILLIC_ISO
    TagTextExportCharacterSet.GREEK_ISO
    TagTextExportCharacterSet.WINDOWS_ARABIC
    TagTextExportCharacterSet.WINDOWS_HEBREW
    Text.checkBoxes
    Text.comboBoxes
    Text.listBoxes
    Text.radioButtons
    Text.textBoxes
    Text.signatureFields
    Text.paragraphKashidaWidth
    TextColumn.checkBoxes
    TextColumn.comboBoxes
    TextColumn.listBoxes
    TextColumn.radioButtons
    TextColumn.textBoxes
    TextColumn.signatureFields
    TextColumn.paragraphKashidaWidth
    TextDefault.paragraphKashidaWidth
    TextFrame.objectExportOptions
    TextFrame.linkedPageItemOptions
    TextFrame.checkBoxes
    TextFrame.comboBoxes
    TextFrame.listBoxes
    TextFrame.radioButtons
    TextFrame.textBoxes
    TextFrame.signatureFields
    TextFrame.horizontalLayoutConstraints
    TextFrame.verticalLayoutConstraints
    TextFrameContents.PLACEHOLDER_TEXT_ARABIC
    TextFrameContents.PLACEHOLDER_TEXT_HEBREW
    TextFrameContents.PLACEHOLDER_TEXT_CYRILLIC
    TextFrameContents.PLACEHOLDER_TEXT_GREEK
    TextFramePreference.useFlexibleColumnWidth
    TextFramePreference.textColumnMaxWidth
    TextFramePreference.autoSizingType
    TextFramePreference.autoSizingReferencePoint
    TextFramePreference.useMinimumHeightForAutoSizing
    TextFramePreference.minimumHeightForAutoSizing
    TextFramePreference.useMinimumWidthForAutoSizing
    TextFramePreference.minimumWidthForAutoSizing
    TextFramePreference.useNoLineBreaksForAutoSizing
    TextImportCharacterSet.MACINTOSH_GREEK_SHARED_CAPS
    TextImportCharacterSet.MACINTOSH_ARABIC
    TextImportCharacterSet.MACINTOSH_HEBREW
    TextImportCharacterSet.WINDOWS_ARABIC
    TextImportCharacterSet.WINDOWS_HEBREW
    TextImportCharacterSet.ARABIC_ASMO
    TextImportCharacterSet.ARABIC_ASMO_TRANSPARENT
    TextPreference.quoteCharactersRotatedInVertical
    TextStyleRange.checkBoxes
    TextStyleRange.comboBoxes
    TextStyleRange.listBoxes
    TextStyleRange.radioButtons
    TextStyleRange.textBoxes
    TextStyleRange.signatureFields
    TextStyleRange.paragraphKashidaWidth
    WMF.linkedPageItemOptions
    WMF.horizontalLayoutConstraints
    WMF.verticalLayoutConstraints
    Window.selectionKeyObject
    Word.checkBoxes
    Word.comboBoxes
    Word.listBoxes
    Word.radioButtons
    Word.textBoxes
    Word.signatureFields
    Word.paragraphKashidaWidth
    XmlStory.paraStyleMappings
    XmlStory.charStyleMappings
    XmlStory.tableStyleMappings
    XmlStory.cellStyleMappings
    XmlStory.checkBoxes
    XmlStory.comboBoxes
    XmlStory.listBoxes
    XmlStory.radioButtons
    XmlStory.textBoxes
    XmlStory.signatureFields
    XmlStory.paragraphKashidaWidth
    Methods
    Button.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    Document.createAlternateLayout(spreadItems,name,width,height,createTextStyles,linkTextStor ies,layoutRule)
    Document.deleteAlternateLayout(name)
    EPS.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    EPSText.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    FormField.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions ])
    Graphic.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    GraphicLine.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptio ns])
    Group.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    Guide.transformValuesOf(in)
    Guide.resolve(location,in[,consideringRulerUnits])
    Image.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    ImportedPage.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOpti ons])
    Link.goToSource()
    MasterSpread.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,placePoint] [,destinationLayer][,showingOptions])
    MediaItem.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions ])
    Movie.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    MultiStateObject.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showing Options])
    Oval.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    PDF.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    PICT.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    Page.snapshotCurrentLayout()
    Page.deleteLayoutSnapshot()
    Page.deleteAllLayoutSnapshots()
    Page.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,placePoint][,destin ationLayer][,showingOptions])
    PageItem.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions] )
    Polygon.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    Rectangle.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions ])
    Sound.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    SplineItem.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOption s])
    Spread.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,placePoint][,dest inationLayer][,showingOptions])
    TextFrame.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions ])
    WMF.contentPlace(pageItems[,linkPageItems][,linkStories][,mapStyles][,showingOptions])
    Changed methods
    Application.dumpFromMemoryMark(Array of from)
    Application.dumpBetweenMemoryMarks(Array of from,Array of to)
    Button.extractLabel(key)
    Document.align(alignDistributeItems,alignOption[,alignDistributeBounds][,reference])
    Document.distribute(alignDistributeItems,distributeOption[,alignDistributeBounds][,useDist ributeMeasurement][,absoluteDistributeMeasurement][,reference])
    EPS.extractLabel(key)
    EPSText.extractLabel(key)
    FormField.extractLabel(key)
    Graphic.extractLabel(key)
    GraphicLine.extractLabel(key)
    Group.extractLabel(key)
    Image.extractLabel(key)
    ImportedPage.extractLabel(key)
    MediaItem.extractLabel(key)
    Movie.extractLabel(key)
    MultiStateObject.extractLabel(key)
    Oval.extractLabel(key)
    PDF.extractLabel(key)
    PICT.extractLabel(key)
    PageItem.extractLabel(key)
    Polygon.extractLabel(key)
    Rectangle.extractLabel(key)
    Sound.extractLabel(key)
    SplineItem.extractLabel(key)
    TextFrame.extractLabel(key)
    WMF.extractLabel(key)

    .. created using this XML input ..
    <fileset>
              <file name="omv$indesign-7.5$7.5.xml" />
              <file name="omv$indesign-8.0$8.0.xml" />
    </fileset>
    .. and this XSLT ..
    <?xml version="1.0" encoding="iso-8859-1" ?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:variable name="file1" select="document(/fileset/file[1]/@name, /)" />
    <xsl:variable name="file2" select="document(/fileset/file[2]/@name, /)" />
    <xsl:template match="/">
    <html><head><title>InDesign changes from CS5.5 to CS6</title><LINK rel="stylesheet" type="text/css" href="styles003.css" /></head><body>
    <h1>InDesign changes from CS5.5 to CS6</h1>
    <h2>Removed</h2>
    <h3>Classes</h3>
    <xsl:apply-templates select="$file1/dictionary/package" mode="c_removed" />
    <h3>Properties</h3>
    <xsl:apply-templates select="$file1/dictionary/package" mode="p_removed" />
    <h3>Methods</h3>
    <xsl:apply-templates select="$file1/dictionary/package" mode="m_removed" />
    <h2>Added</h2>
    <h3>Classes</h3>
    <xsl:apply-templates select="$file2/dictionary/package" mode="c_added" />
    <h3>Properties</h3>
    <xsl:apply-templates select="$file2/dictionary/package" mode="p_added" />
    <h3>Methods</h3>
    <xsl:apply-templates select="$file2/dictionary/package" mode="m_added" />
    <h2>Changed methods</h2>
    <xsl:apply-templates select="$file2/dictionary/package" mode="m_changed" />
    </body></html></xsl:template>
    <xsl:template match="package" mode="c_removed">
              <xsl:for-each select="classdef">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="not($file2/dictionary/package/classdef[@name=$this])">
                                  <p><xsl:value-of select="$this" /><xsl:if test="@enumeration"> (enum)</xsl:if></p>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="c_added">
              <xsl:for-each select="classdef">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="not($file1/dictionary/package/classdef[@name=$this])">
                                  <p><xsl:value-of select="$this" /><xsl:if test="@enumeration"> (enum)</xsl:if></p>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="p_removed">
              <xsl:for-each select="classdef">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="$file2/dictionary/package/classdef[@name=$this]">
                                  <xsl:for-each select="elements/property">
                                            <xsl:variable name="prop" select="@name" />
                                            <xsl:if test="not($file2/dictionary/package/classdef[@name=$this]/elements/property[@name=$prop])">
                                                      <p><xsl:value-of select="$this" />.<xsl:value-of select="$prop" /><xsl:if test="@enumeration"> (enum)</xsl:if></p>
                                            </xsl:if>
                                  </xsl:for-each>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="p_added">
              <xsl:for-each select="classdef">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="$file1/dictionary/package/classdef[@name=$this]">
                                  <xsl:for-each select="elements/property">
                                            <xsl:variable name="prop" select="@name" />
                                            <xsl:if test="not($file1/dictionary/package/classdef[@name=$this]/elements/property[@name=$prop])">
                                                      <p><xsl:value-of select="$this" />.<xsl:value-of select="$prop" /><xsl:if test="@enumeration"> (enum)</xsl:if></p>
                                            </xsl:if>
                                  </xsl:for-each>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="m_removed">
              <xsl:for-each select="classdef[@dynamic]">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="$file2/dictionary/package/classdef[@name=$this]">
                                  <xsl:for-each select="elements/method">
                                            <xsl:variable name="meth" select="@name" />
                                            <xsl:if test="not($file2/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth])">
                                                      <p><xsl:value-of select="$this" />.<xsl:value-of select="$meth" />()</p>
                                            </xsl:if>
                                  </xsl:for-each>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="m_added">
              <xsl:for-each select="classdef[@dynamic]">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="$file1/dictionary/package/classdef[@name=$this]">
                                  <xsl:for-each select="elements/method">
                                            <xsl:variable name="meth" select="@name" />
                                            <xsl:if test="not($file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth])">
                                                      <p><xsl:value-of select="$this" />.<xsl:value-of select="$meth" />(<xsl:for-each select="parameters/parameter">
    <xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if>
    </xsl:for-each>)</p>
                                            </xsl:if>
                                  </xsl:for-each>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    <xsl:template match="package" mode="m_changed">
              <xsl:for-each select="classdef[@dynamic]">
                        <xsl:sort select="@name" />
                        <xsl:variable name="this" select="@name" />
                        <xsl:if test="$file1/dictionary/package/classdef[@name=$this]">
                                  <xsl:for-each select="elements/method">
                                            <xsl:variable name="meth" select="@name" />
                                            <xsl:if test="$file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]">
                                                      <xsl:if test="$file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters != parameters">
                                                                <p><xsl:value-of select="$this" />.<xsl:value-of select="$meth" />(
                                                                <xsl:for-each select="$file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter">
                                                                          <xsl:variable name="parm" select="@name" />
                                                                          <xsl:if test="not($file2/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm])">
                                                                                    <stkout><xsl:value-of select="$parm" /></stkout><xsl:text> </xsl:text>
                                                                                    <xsl:if test="count(../parameter) &gt; 1">,</xsl:if>
                                                                          </xsl:if>
                                                                </xsl:for-each>
                                                                <xsl:for-each select="parameters/parameter">
                                                                          <xsl:variable name="parm" select="@name" />
                                                                          <xsl:choose>
                                                                                    <xsl:when test="not($file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm])">
                                                                                              <b><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if></b>
                                                                                    </xsl:when>
                                                                                    <xsl:when test="datatype/array and not($file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm]/datatype/array)">
                                                                                              <xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><i>Array of </i><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if>
                                                                                    </xsl:when>
                                                                                    <xsl:when test="@optional and not($file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm][@optional])">
                                                                                              <b><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><i>Array of </i><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if></b>
                                                                                    </xsl:when>
                                                                                    <xsl:when test="not(@optional) and $file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm][@optional]">
                                                                                              <stkout><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><i>Array of </i><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if></stkout>
                                                                                    </xsl:when>
                                                                                    <xsl:when test="datatype/type != $file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm]/datatype/type">
                                                                                              <xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><stkout><xsl:value-of select="$file1/dictionary/package/classdef[@name=$this]/elements/method[@name=$meth]/parameters/parameter[@name=$parm]/datatype/type" /></stkout><xsl:text> </xsl:text><b><xsl:value-of select="@name" /></b><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if>
                                                                                    </xsl:when>
                                                                                    <xsl:otherwise>
                                                                                              <xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">[</xsl:if><xsl:if test="position() &gt; 1">,</xsl:if><xsl:value-of select="@name" /><xsl:if test="@optional='true' or datatype/value or contains(shortdesc, 'Optional')">]</xsl:if>
                                                                                    </xsl:otherwise>
                                                                          </xsl:choose>
                                                                </xsl:for-each>)</p>
                                                      </xsl:if>
                                            </xsl:if>
                                  </xsl:for-each>
                        </xsl:if>
              </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>

  • Mobile Safari changes '#' from a link in Mail to '%'

    When I press a link from Mail that contains the '#' character, Safari changes it to a '%'. This causes grief as some sites don't load as expected.

    Did you set Firefox as default browser at Prefences -> Default Browser of Safari side as well?
    -- kaz-k

  • What would you change from factory default on router

    Newbie here. For all the master techs out there. What all should be changed from factory defaults on router to make it as safe as possible? thanks

    1. Change the router password (default "admin") on the Adminstration tab. Choose a good longer password.
    2. Enable wireless security WPA or WPA2 in the Personal/PSK variant.
    3. Choose a good passphrase, if possible use a random generated 63 character string.
    That's about what you have to do to secure the router and the wireless.

  • Background color changed from white to yellow and =25% changed to %% on email

    I type =25% on my email and sent out, background color changed from white to yellow and =25% changed to %%.

    Try leaving a space after the =
    Thus: = 25%
    Where and when did it change? Did it change inside Thunderbird? Did it change in the Sent folder? Or in a reply to you?
    = and % are used in certain types of email encoding; =20% often appears, meaning character 0x20 which is 32 denary or the space character. It is often used where an explicit space would be illegal, and this is common in URLs and other links. I'm thinking that =25% similarly has a special meaning. It ''shouldn't'' get decoded, but software is buggy.
    I can't reproduce it here, which is why I'm asking about how and when it changes. Where does the Microsoft software come into it?

  • Capitalization doesn't work as described. One can start with lower case and change to upper, but changing from upper case to any of the other options doesn't work. Is there a way around this or is this just a glitch that needs fixing?

    In Pages capitalization doesn't work as described. One can start with lower case and change to upper, but changing from upper case to any of the other options doesn't work. Is there a way around this or is this just a glitch that needs fixing?

    I think it does work as described, but the description is not very complete. Capitalization does not change any of the characters that you type; what it does is allow some of the lower case characters to display as capitals. If you copy the result and paste it as plain text, you'll see that the lower case characters are still there. It doesn't actually say anywhere that it can make capitals display as lower case, and it can't.
    The obvious way around this is to actually type what you want.
    The more powerful way is to install WordService from Devon Technologies which adds the functionality of Pages' capitalization menu as well a lot of other ones. WordService actually changes the character to the one displayed, and it works in most of the applications on your Mac.

  • Characterset change from WE8ISO8859P1 to AL32UTF8

    Hi,
    I have restore the rman on new server oracle 11.2.0.3 (Previous backup was of oracle 10.2.0.4).
    Then I have successfully upgrade the database to oracle 11g but issue which I am facing right now is that the old database have the character set WE8ISO8859P1 which is now upgraded to oracle 11.2.0.3 database server.
    My required character set is AL32UTF32.
    Now is there any way that while restoring the rman backup of oracle 10.2.0.4 on new server I set the character set to AL32UTF32.
    Thank you for your cooperation.
    Kind Regards,
    Adnan Hamdussalam

    It means that either I have to change it before backup or after perform the full upgrade on new server oracle 11g and then convert the character set. Am I right?Yes, You are right.
    I think as you are changing from WE8ISO8859P1 to AL32UTF8, so you do not need any tool.
    Must read note,
    *Changing the NLS_CHARACTERSET to AL32UTF8 / UTF8 (Unicode) [ID 260192.1]*

  • Issue on payroll area which is changing from biweekly to monthly in Mid of

    Dear Experts,
    I have an issue on payroll area which is changing from biweekly to monthly in Mid of the Month.
    One employee was retired on 29th of March, so his payroll area was changed from biweekly to monthly on 29th. For retire we are running the payroll on 8th of every month. When we are running payroll for April he has received only 29th and 30th retire salary, by the time he is not yet retired also.
    In this case the main problem is monthly payroll time is early then biweekly. so the employee is getting retire salary then his regular pay.
    Can you guide me where we can control that monthly payroll area should not be triggered at this movement.
    Thanks
    Chandra

    You can do that but it is not that easy as it sounds if you have to do that over a period of say 10-20 years...lot of operational work!!
    Also say if you load the retiree action one month ahead say on 03/01/2011. And the employee is retiring on  03/29.
    Retire payroll is on 04/08
    Biweekly is on 04/15
    Now you decide to lock the employees after the 1st biweekly check of March...say which was process 14 days before 04/15 would be 04/01. The employee number is locked between 04/01 to 04/15. For 14 days you have locked these employees!!
    What happens if there is adjustment pay...you have to manually go and unlock the employee and lock him after the adjustment check.
    I will let you decide based on the comfort, SAP effort, Operational effort and system maintenance.

  • When I share a pages document as a PDF (via e-mail) all the pictures change from the original document, most are missing with just a few of them repeated in the spots where others had been.  How do I do this without the document changing?

    When I share a pages document as a PDF (via e-mail) all the pictures change from the original document, most are missing with just a few of them repeated in the spots where others had been.  How do I do this without the document changing?
    I need to be able to send it to a PC in order to print it.

    Hard to say what is happening without examining the file.
    If you like click on my blue name and email me both the .pages file and the the .pdf you have made from it.
    Peter
    ps It would help to say what version of Pages you are using and on what you are running it. iOS or Mac and what version.

  • TS3899 I changed from an Iphone to a Android.  I can't get my email from other Iphones

    I changed from an Iphone to a Android.  Now I can't recieve emails from other Iphones.

    Email should not be a problem, text messages can be but not email if it is set up correctly on your new phone.

  • I have changed from an iPhone to a Sony but when my wife send a message on her IPhone it still gets sent as a iMessage how do I change the settings

    I have changed from an iPhone to a Sony but when my wife send a message it still gets sent as an iMessage how do I change the settings

    Hello, Vespa Boy125. 
    Thank you for visiting Apple Support Communities. 
    Here are the steps that you will need to process on your line to remove your number from iMessage. 
    iOS: Deactivating iMessage
    http://support.apple.com/kb/ts5185
    Cheers,
    Jason H. 

  • 'CHANGE' event not triggering for BTE 2214 on park/change from FBV1/FBV2

    I have designed a workflow template for FI parking. If the parked document is rejected, i need to trigger FIPP 'CHANGE' event for sending workitem to approver when someone changes the parked document. In SWEL event trace, the 'CHANGE' event is not getting raised.
    So i implemented a BTE 000002214 and now i am able to raise 'CHANGE' event and capture it in workflow. But this is only working when i park a document using FV50 transaction and later change it.
    But when i park a document using FBV1 and then make changes from FBV2, the 'CHANGE' event is not being triggered in SWEL. Should i implement some other BTE like 2218 etc? Can you please help?

    Hi Gokul,
    You can try handling the SAVE event instead of the CHANGED event.
    T-code FBV2 will not allow you to save the document unless you make some changes.
    Try implementing BTE 2218 and revert.
    Thanks,
    Sreekanth

  • I changed from i iphone 5 back to a iphone 4.. now my itunes does not recognise that i have a iphone 4! how do i convert my last back up (on iphone 5) to my new iphone 4?

    i changed from i iphone 5 back to a iphone 4.. now my itunes does not recognise that i have a iphone 4! how do i convert my last back up (on iphone 5) to my new iphone 4?

    In your case you can only restore from a backup that has been created with the same iOS version. An iPhone 4 can only run 7.1.2, and, unless your iPhone 5 did not run the same version, you can't use a newer iOS backup of the 5 on the iPhone 4

  • Downloads changing from "Downloading" to "waiting to download". Why?

    Tonight while downloading a HD movie I was watching a couple episodes of a TV show I have on my ATV. Between episodes I would check my download progress and find that the status had changed from "Downloading" to "waiting to download". Can't you watch videos and download something else at the same time?
    I did update a photo library and perform a sync during one of the shows I watched. Does that indefinitely pause a download. The sync took less than one minute.
    I'm glad there are a few people here that know everything about the ATV. Very helpful. Thanks, KMA

    Have you included an href in the jnlp element ?
    are you trying to version the jnlp file too ?
    /dietz

Maybe you are looking for

  • ESS List of Services for ERP(2005)

    hi,   We are using ECC6.0.We have to implement ESS What should be the Version of Business Package that should be used for the same.We tried downloading BP version 1.0.We used to get an excel sheet which used to give the list of all the services and i

  • Why is my iMovie taking up so much space and how can I get my data back?

    For some reason, unknown to me, my imovie app is taking up 6.5GB of my data. I have three, small (less than five minute) videos and I am wondering how to get rid of whatever is taking up so much space and what could possibly be filling up my ipad. It

  • How to enable a component based on a command button

    Hi, i'm looking for the options to enable and disable "af:showDetailItem" component based on selection of "af:SelectBooleanCheckBox " component . Thanks for your help. ganesh

  • Payment Term by Material

    Hi expert, Can we set payment term for each material. Do we have payment term fields in material master? regards,

  • Spry Horizontal Menu Submenus Won't Appear - Help

    OK, I have a Spry Horizontal Menu Bar done through DW CS5. The root menu items work just fine. And the arrow graphics indicating there are submenus are shown, however when you hover over the main menu item the submenus do not appear in browser previe