Website for UTL packages

Please let me know the website where i can get the list of UTL packages and its uses.

http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96612/toc.htm
Cheers
Sarma.

Similar Messages

  • I designed a website for my client and he had already purchased a hosting package with a company, Mu

    I designed a website for my client and he had already purchased a hosting package with a company, Muse is asking for the Business Catalyst in order to use the contact us form. What can I do in order to fix this and avoid having to purchase the Catalyst service. Please advise can the code be alter?

    Yesterday Adobe announced updates to all the creative cloud products, including Muse. One of the new features for Muse is Forms that work on most hosting providers(not just BC).
    The new version of Muse will be publicly available in June. Prerelease builds are available now for users who have joined the prerelease program (http://www.adobekb.com/participating_in_muse_beta.html)
    http://www.adobe.com/products/muse.html
    http://adobe.ly/17IojFs
    http://youtu.be/RrXHhiY4-a0

  • 10.8.2 update: can't install "error occurred while evaluating Javascript for the package"

    Greetings All-
    I'm trying to update from 10.8.1 to 10.8.2 on my Macbook Air. When I downloaded the .dmg from Apple and ran it, I got the following error:
    "OS X Update Can't be installed on this disk. An error occurred while evaluating JavaScript for the package."
    So far, I've done the following, all to no avail:
    (1) Updated Java to v7 per Java's website, no change
    (2) Downloaded the 10.8.2 combo update, no change
    (3) Found Apple's OS X Java update (which is still at v6)- get an error at install that "the contents of the disk can't be changed"
    (4) Restarted at each step
    Does anyone have any suggestions or ideas?
    Thanks!

    Permission repair, too?
    Take a look here: https://discussions.apple.com/thread/3811748?start=0&tstart=0
    And possibly here:  https://discussions.apple.com/thread/3889562

  • Suggestion for new package management scheme

    As was talked about in the INCOMING thread, Arch is growing and the devs are having trouble keeping up with maintaining packages. Arch is becoming disorganized and messy.
    Well, Xentac and I were discussing this for a while, and we both seem to like a voting system. Arch shouldn't try to maintain every package out there, it's simply a waste of effort. If only one or two people want a package, they can build it themselves, it's not hard with ABS.
    Arch devs should focus on keeping packages high quality, up to date, etc. They can't do this if there's 10,000 packages. So the solution would be that a package won't be included in the official repos (current, extra, unstable) unless it gets a certain number of votes, showing that lots of people really want the package, and it's "essential".
    I don't know how many votes a package would need, but that's a little thing. I would suggest all packages in Extra/Unstable initially go up for this voting (once we implement it) and we make the vote quota be a little lower for this initial slimming, and that'll cut down the repos right there. All those packages that no one uses (that wont even get one vote) can be cut away. People can always vote them back if they become popular.
    I don't want to have to do things like KDE, GNOME, etc myself, but I really don't mind maintaining my own little customizations, like Rhythmbox w/ XINE support (instead of Gstreamer). This vote system simply makes sure that a package is worth the developers time.
    This goes with my idea of Arch as the perfect "Base" distro. People can build what they want on top of it.
    This idea would also remove STAGING, as Arch wouldn't be accepting outside packages (though you're free to run your own repo or post PKGBUILDs on the forum). TESTING would be still used of course.
    Suggestions?

    beniro wrote:
    I haven't really seen a single post in this thread that is without some merit, or at least an attempt at input.
    The great thing about not being a larger distro is that the situation isn't as pressurized.  Still, though, we (meaning the community AND developers) still obviously want Arch to be the best it can be and that's what this thread is about.
    So...are any of the ideas mentioned here feasible?  What do you think would be the best solution to creating a package release system that can handle Arch's current growth?
    What about implementing a vote-based system for everything not in current?  Would this be done with a web-based interface by using "submitrequest/vote" or something...obviously only registered users should be voting, right?
    Anyway, I think a great job is being done and this thread is simply a positive indication of the vitality of the community.  I think most of us fully recognize the resources of our developers and are simply wanting to find a way for them to bring us the best possible product.  Arch rules!
    I agree. I think what we should do is just take this time that we have while Arch is still young and not as well known among the Linux community, and try to make it great, relieving the pressures that we'd get a lot of later (not to say that we wouldn't get any, just less, hopefully).
    As for the package setup, isn't there some way that we could write some system to do this? I had mentioned it before. And, I just came up with a small system. It would work like this:
    We get one main server, whose "job" would be to create and store packages, and users could download from that server to install, etc. Now, whenever someone on the package management team finds an updated version of a package, they could log in to a special area of the site meant specifically for those developers. Then, using the special program on the website/server, they could link to the .tar or .bz2 that contains the source and submit it, along with the file's information that would be included with the package when you install it (file name, version, etc.) into the web-based form. Then, they click submit, and the server processes that file after downloading it, runs a makepkg-type thing on it, and stores the produced package in a "Fresh" repository. Then, the developer can download the file and opt to test it. If they're sure that it's okay, then they can replace the new file over the old one.
    Just an idea, tell me what you think... :?

  • Installing utl packages

    how i can install utl packages in oracle 8i.
    eg. i want to use utl.smtp package for sending mails from my forms, but it gives me an error saying that dentifier 'UTL_SMTP.CONNECTION' must be declared
    can u please help me.
    uday

    Hi,
    You have to compile the package ORACLE_HOME/rdbms/utlsmtp.sql as sys.
    Here is an example on how call/use package utl_smtp:
    DECLARE
         smtp_out utl_smtp.connection ;
         PROCEDURE send_header(name IN VARCHAR2, header IN VARCHAR2) AS
         BEGIN
              utl_smtp.write_data(smtp_out, name || ': ' || header || utl_tcp.CRLF);
         END ;
         BEGIN
              smtp_out := utl_smtp.open_connection('smtp.swipnet.se');
              utl_smtp.helo(smtp_out, 'sune.se');
              utl_smtp.mail(smtp_out, '[email protected]');
              utl_smtp.rcpt(smtp_out, '[email protected]');
              utl_smtp.open_data(smtp_out);
              send_header('From', '"Sender" <[email protected]>');
              send_header('To', '"Recipient" <[email protected]>');
              send_header('Subject', 'Test');
              utl_smtp.write_data(smtp_out, utl_tcp.CRLF || 'Hello world!');
              utl_smtp.close_data(smtp_out);
              utl_smtp.quit(smtp_out);
         EXCEPTION
              WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
                   utl_smtp.quit(smtp_out);
              WHEN others THEN
                   RAISE_APPLICATION_ERROR(-20100, 'Fail! Cannot send e-mail: ' || sqlerrm) ;
    END ;
    Regards - Tommy

  • Anyone know the website for 3rd party software mentioned in PSE 6?  I've lost the insert.

    Anyone know the website for 3rd party software mentioned in PSE 6 package?  (I lost the insert.)

    No, but thanks.  I'm looking not for an Adobe website, but the website of the supplier of 3rd-party software that adds 4 functions
    to PSE 6.  I've tried to contact Adobe, but as with so many of our leading companies, it's just not possible to get a human who
    can answer a "customer service" question unless it's contained in a phone menu.

  • I built a website for a customer using HTML only, so it would work on everything, but some of the text numbers are not clear on the ipad. It works perfectly on all the other browsers.

    I built a website for a customer using HTML only, so it would work on any browser, and it works perfectly on everything except ipad safari. I'm loosing information with most of my text numbers - instead of being black they are displaying a 'ghost' image (white) of the numbers.
    Is this a memory issue, or cache issue, or something else?  I've downloaded iCab and the site works perfectly with it.
    Also wondering if I can manually reload/refresh web pages in iPad Safari.
    Since most people with iPads will use Safari rather than iCab, I have to tweak this site to work in Safari.

    Detecting phone numbers and making them clickable is a feature of the browser, and rebuilding your web-site links will not make any difference. Its done when the page is shown in the browser, not when the page is created.
    According to the Safari iOS developers guide, you can turn these data detectors off using this code:
    <meta name = "format-detection" content = "telephone=no">
    http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Referen ce/Articles/PhoneLinks.html

  • Hi, I got the problem with Firefox 27.0.1. I can not run Selenium on Firefox after login a website for automation testing. The browser is not responding.

    Hi, I got the problem with Firefox 27.0.1. I can not run Selenium on Firefox after login a website for automation testing. The browser is not responding. However when I close Nunit, the page is back to be normal. The title is returned to the name of website without "not responding". I sure this problem did not happen on Firefox version 26. I just got this problem when firefox upgrading automatically to version 27. Please help me fix this problem because it is very important for my work. If you need more information pls send your concerns via my email address.
    Thanks so much

    Hi, the work around suggested above should put you in working mode in the meantime. However to help investigate the issue it is possible to analyze what is not loading or taking a long time by analyzing the network traffic or http headers of the Nunit web page.
    *[https://addons.mozilla.org/en-us/firefox/addon/live-http-headers/]
    *Web developer Tools > Web console
    If you post the results with out the user data, we are happy to help.

  • UTL package

    hey is there any way to check the filename from OS in pl/sql block. if we have a oracle directory named ABC reside physically on c:\backup. backup folder contain 4 different name file like PKMX1, PKMX2.dmp is there any UTL package which enable us to check if filename already there then remove old one create new. i have found UTL package which delete file from directory but how can i check either filename already there or not. plz check this
    UTL_FILE package
    FUNCTION FOPEN (location IN VARCHAR2,
    filename IN VARCHAR2,
    open_mode IN VARCHAR2)
    RETURN UTL_FILE.FILE_TYPE;

    You should use FGETATTR procedure and it's exist parameter to know whether the file exists or not
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm
    FGETATTR Procedure
    This procedure reads and returns the attributes of a disk file.
    Syntax
    UTL_FILE.FGETATTR(
       location    IN VARCHAR2,
       filename    IN VARCHAR2,
       exists      OUT BOOLEAN,
       file_length OUT NUMBER,
       blocksize   OUT NUMBER);- - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • How can I add more chosen websites for quick access in the remaining empty fields in "file"-"new tab"? ing empty fields

    I can´t add preferred, chosen, most visited or bookmarked websites to the 28,15 or 6fields in"file" - "new tab". I have a PC with Windows Vista and have been using Firefox with additional Google toolbar as my preferred or default browser for several years. I have downloaded several updates. I suspect that my version is now 4 or 5. Originally the Google for Firefox new tab feature showing chosen favourite or preferred websites for quick one click access worked fine but I seem to have lost the abiiity or forgotten how to add new such favourites for quick access. The "edit" button there on the bottom left can only delete valuable chosen sites, which then seem to the be lost forever. This edit button is very dangerous! The "bookmarks" and "most visited" tabs listed show a wild coincidental mixture of sites I once visited sometime but have nothing to do with my real favourites or chosen or most visited sites. So I don´t use these bookmark or "most visited" features.

    Most visited would not be your bookmarks, but your tab history.
    You can check that out via Ctrl+Shift+H then search on ":" (colon without the quotes). Sort on the "Visits Count" (descending) and you will see that they agree.
    '''Most visited''' is one of the '''smart bookmark folders''' which are database queries.
    '''More information:'''
    * [https://developer.mozilla.org/en/Places_query_uris Places query URIs - MDC Docs]
    * [https://support.mozilla.com/kb/Smart+Bookmarks+folders Smart Bookmarks folders | How to | Firefox Help]
    * [https://support.mozilla.com/kb/Restore+the+default+Smart+Bookmarks+Folders Restore the default Smart Bookmarks Folders | Troubleshooting | Firefox Help]
    '''Related information:'''
    * [http://kb.mozillazine.org/Viewing_the_browsing_history_-_Firefox Viewing the browsing history - Firefox - MozillaZine Knowledge Base]
    * [https://support.mozilla.com/hu/questions/830859 When I search in &quot;History&quot; for items I've called up, I get a page with the heading &quot;Library.&quot; but with no text beneath it. Thanks.]
    Google Toolbar is no longer supported in Firefox 5 or newer versions.<br>http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars

  • How can I store history of certain websites for ever?

    So I like to read Manga but I keep forgetting which chapter i am on of the manga in question, i got 10's of manga on my current read list that get now and then updated. And firefox deletes the history after so many pages doesn't it? I get the feel it does but i am not sure. So to prevent the history search which i use a lot from crashing i would only like that it saves the history of these 2 websites for ever. and let is save the rest of the history like it already does.
    Is there any way to achieve this?
    if it saves all history this question is not needed.
    but i would still like to be able to set certain sites to forever and all others not because, the history search function will crash when i have accumulated millions of pages no?

    Thank you very much for your reply. I saw this page. But the only thing that can be saved as CSV format is the statistics of each crash signature
    [http://crash-stats.mozilla.com/topcrasher/byversion/Firefox/3.6.7]
    What I wanted is a dump of all the individual crash reports (like the one in
    [http://crash-stats.mozilla.com/report/index/24f1df7d-9a44-4055-a462-fe6332100706] with all their details.
    More over this page allows us to retrieve information within 7, 14 or 28 days of todays date only. I want a much larger history.
    I would be grateful if you can help me with this.

  • How does an account holder return their old phone when they edged up through the Verizon Edge Program? I have wasted way too much of my time trying to do this and am certainly disgusted with Verizon's communication and website for this.

    I have been searching this helpless website for 3 nights after work trying to figure out how to get my old phone back to "WHEREVER" it needs to go. I am soo frustrated, I'm ready to throw this phone away and forget it. I've read through posts and tried the links left to only be taken where I've already been, with NO LUCK AT ALL. I've even called verizon myself to get, yet again, NO HELP!! Can anyone give me the real answer as to what to do.???
    I've got the box I received my new phone in, with the plastic bag for the old phone and some papers the clearly read, "Keep this for your records" nothing that says RETURN LABEL. Don't have an address, either!

    This is the same response other community users have gotten, there is not option to print a label. This is also where li was told to go look for the receipt when I card
    Verizon. THERE IS NOTHING THERE TO PRINT. I've tried to include a link to that page, so you can view yourself,  but I'm thinking it won't post in this community discussion.
    So, with this, I'm still stuck in the same situation... HOW DO I RETURN THIS PHONE? WHY CANT VERIZON EMAIL ME A LABEL DIRECTLY???
    https://wbillpay.verizonwireless.com/vzw/secure/orderhistory/viewOrderHistory.action

  • Pkgman - a bash script for local package and PKGBUILD management

    hi all,
    here is a script which manages a local repository and lets you edit
    PKGBUILDs and other related files, automatically generates checksums,
    build packages, add them to your local repo and so on.
    it also has AUR support for submitting tarballs, leaving comments, etc.
    get it from here:
    http://sourceforge.net/projects/pkgman/
    and AUR package:
    http://aur.archlinux.org/packages.php?ID=17100
    you need abs, curl and pacman and optionally namcap and desktop-file-utils.
    RTFM online:
    http://sourceforge.net/apps/mediawiki/p … n_man_page
    first of all copy the pkgman.conf and AUR.conf files from /usr/share/pkgman to ~/.config/pkgman/  or ${XDG_CONFIG_HOME}/pkgman - if ${XDG_CONFIG_HOME} is set,
    edit these two files and then run
    pkgman --runmefirst
    pkgman doesn´t install anything. if you want it just builds the package and moves it to your local repository. install it then with pacman.
    it also has no dependency handling. there are many other tools which provide this.
    the main intention was to keep track of package versions, different PKGBUILD versions and own AUR submitted tarballs; also to keep a clean local repository and clean build directories.
    pkgman is stable now. i´m using it for months without any issues.
    however, if there are problems or feedback please post them here.
    vlad
    changelog:
    version 2.4:
           *pkgman now respects the PKGDEST and SRCDEST variables from makepkg.conf. (though it still moves the src.tar.gz and .pkg.tar.gz to package backup directory).
    version 2.5:
           *pkgman uses PKGDEST if SRCDEST not set in makepkg.conf.
    version 2.6 -> r26:
           *changed version system: version 2.6 is now r26!
           *minor changes: > pkgman uses now the $SHELL variable.
                                    > new and more comprehensible manpage description (thanks to bender02)
    version r27:
           *changed SRCDEST since it's only a cache dir. all files (pkg.tar.gz and src.tar.gz) go to PKGDEST.
    version r28:
           *added new variable ShellCommand to pkgman.conf. Default is $SHELL.
           *One might use an external application (like screen or xterm) to switch to build directory and edit files simultaneously.
    version r30:
           *minor changes. nothing crucial
    r32: *OverwriteExistingPackage isn't used anymore. one can delete it from ~/.config/pkgman/pkgman.conf.
           *minor changes
    version r33:
           *"-l|--list" also shows installed package version and available ABS/AUR PKGBUILD version for given package.
           *"-a|--abs" can now also be used with other options (like "-e")
    r39: * when backing up src.tarballs it asks whether to backup the source file or not
           * more detailed "--list" option - also shows if package is installed or not and available ABS/AUR version
           * added prompt to clean up directory after makepkg
           * when checking pkg.tar.gz also possibility to check for conflicts with files of already installed packages
           * use $PAGER instead of less
           * --help directly shows the manpage
           * --shorthelp shows a brief usage overview
           * added a custom prompt, but only when using bash (is somehow experimental - works fine here for me)
           * minor internal changes
           * pkgman also reads ~/.aurvote file for getting aur name and password. if one already uses aurvote then there is no need for the
             ~/.config/pkgman/AUR.conf file.
    r40: * new manual page & rewrite of usage function
           * both option "--flush" and "--flushall" were omitted in favor of the more versatile "--cleanup" option
           * pkgman <packagename> checks now if <packagename> is owned by user
           * backup option after each editing
           * added license
           * minor internal changes
    r41: * just small bug fixes, nothing crucial.
    r42: * more bugs fixed.
    r45: * new options added:
              >   --listversions: list local and available versions of installed packages from LocalPackages directory
              >  --getownpackages: synchronize local own packages with AUR
           * added new variable in pkgman.conf:
              > ListOutputInPager: output of, for example, "--list" or "--own" is piped into $PAGER
           * added a new optional dependency "desktop-file-utils" for validating desktop entry files
           * also supports now auto-generation of sha sums not only md5
           * internal fixes due to AUR interface changes:
              > use of json interface
              > correct parsing of package category
           * added 2 proto files (located under /usr/share/pacman):
              >  proto.desktop: a template for *.desktop files
              > PKGBUILD-lib32.proto: a template for lib32 packages for x86_64
           * some code changes and fixes
    r46: * added new option to pkgman.conf (AutoGenerateSums).
             > if AutoGenerateSums=no then pkgman asks whether to generate checksums or not.
             > if set to yes it behaves like in former versions.
    r52: * "--getownpackages" with more than 100 packages works again
           * added new option "--cachecopy":
              For each package in CacheCopyList (new variable in pkgman.conf) get existing package from pacman's cache directory - if
              CopyPkgFromCache (new variable in pkgman.conf) is set to yes - and/or create a source tarball of PKGBUILD and related files from ABS -
              if CopySrcFromABS (new variable in pkgman.conf) is set to yes - and copy them to package backup directory.
           * added new variables to pkgman.conf:
               > "CacheCopyList=file" - batch backup file, one package per line - default location is "$HOME/.config/pkgman/package.list".
               > "CopySrcFromABS=[yes|no]"
               > "CopyPkgFromCache=[yes|no]"
           * some bugfixes
           * docs completed
           * CacheCopyList should look like
    package1
    package2
    #this is a comment
    ! this too
    package3
    !package4
    r54: * renamed "--listversions" option to "--diffversions". makes more sense!
              from the man page:
                  pkgman --diffversions
                  Show differing ABS/AUR versions of installed packages from LocalPackages.
    r55: * minor changes.
    r57: * testing release
           * added a new option "--rollback":
               "pkgman <packagename> --rollback" - checks  http://arm.kh.nu for available package versions,
                                                          lets you choose one, fetches the package and
                                                          moves it to the <packagename> backup directory (if "--repoadd" is used).
    r59: * stable release
           * new option "--rollback" (see r57):
                   it checks http://arm.kh.nu (Arch Rollback Machine) for available package versions,
                   downloads chosen file and moves it to local repository (if "-r|--repoadd"  is used).
            * posting files/comments/etc to AUR should work now again.
    r65: *stable release
           * new option "-M,--meta" to create metapackages and add them and their dependencies to local repository.
              it searches for deps inside the backup directories, pacman's cache and if the packages are not available, it tries to fetch the missing
              dependencies from the Arch Rollback Machine site (http://arm.kh.nu).
    r66: * minor fixes
    r68: * some bugfixes
           * "--repoadd" and "--Reporemove" now accurately removes old packages from LocalRepository
    r69: * small bugfixes when listing packages with similar names
           * curl retries now 5 times if connection is not established
    r75: * "--cachecopy" does not try to dl sourcefiles when backing up ABS PKGBUILDs
           * some work on package splitting
           * further internal changes
    r76: * minor mistakes with "ln" purged
    r79: * mostly small changes
           * "--cleanup" now also removes uninstalled packages from LocalRepository
    r81 & r80: * added AUR v1.6.0 support (use more json)
                    * small ARM changes ("--rollback")
    r85:
          * pkgman supports pkg.tar.xz packages
          * some code rewrite, bugs purged (hopefully)
    r113:
          * pkgman now supports building split packages through makepkg.
             If you already use pkgman you need to rerun "pkgman --runmefirst" after updating.
          * new  "-t,--template" option ("pkgman <packagename> --template <alt. packagename> [--pkgbuildversion <version>] [options]").
             Useful to create a new PKGBUILD and use an existing one as a template.
          * new option: "--conf /path/to/alternate/conf/file" - Specify another configuration file.
          * pkgman now uses ${XDG_CONFIG_HOME}/pkgman or $HOME/.config/pkgman - if first not set - as the default location for its conf files.
    r116:
          * check inet conection when submitting src tarballs to AUR
          * some bugs
          * updated manpage on sf
    For further details please read the manual page.
    Last edited by DonVla (2010-04-28 11:56:59)

    I'm having some troubles with it (perhaps missing dependencies, and forgotten hardcoded dirs?):
    jan@aconcagua 8:20PM ~ % pkgman --runmefirst
    /usr/bin/pkgman: line 77: /home/jan/apps/skripte/archscripts/pkgman/share/pkgman/color.bash: No such file or directory
    /usr/bin/pkgman: line 1293: initcolor: command not found
    /usr/bin/pkgman: line 312: highlight: command not found
    /usr/bin/pkgman: line 312: error: command not found
    /usr/bin/pkgman: line 313: highlight: command not found
    /usr/bin/pkgman: line 313: error: command not found
    /usr/bin/pkgman: line 314: highlight: command not found
    /usr/bin/pkgman: line 314: error: command not found
    /usr/bin/pkgman: line 315: highlight: command not found
    /usr/bin/pkgman: line 315: error: command not found
    /usr/bin/pkgman: line 317: error: command not found
    /usr/bin/pkgman: line 318: error: command not found
    /usr/bin/pkgman: line 321: highlight: command not found
    /usr/bin/pkgman: line 321: msg: command not found
    /usr/bin/pkgman: line 329: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    touch: cannot touch `/bin/.pkgman.registered': Permission denied
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 332: list: command not found
    /usr/bin/pkgman: line 337: msg: command not found
    curl: option --output: requires parameter
    curl: try 'curl --help' or 'curl --manual' for more information
    ^C/usr/bin/pkgman: line 209: cleanoutput: command not found
    /usr/bin/pkgman: line 209: cleanoutput: command not found
    (I terminated with ctrl-c).
    EDIT: errors resolved by correcting the path $HOME/apps/skripte/archscripts/pkgman/share/pkgman to /usr/share/pkgman in the pkgman itself.
    Last edited by bender02 (2008-05-23 01:28:58)

  • Can´t access my files on Creative Cloud. "Page temporarily unavailable. We will return soon." "We are working quickly to resolve the problem and apologize for the delay. Check back later or visit our website for status updates. In addition, you can get he

    Hello,
    For a few days I have been trying to access my files on Creative Cloud web without success. I´ve got this message only:
    "Page temporarily unavailable. We will return soon."
    "We are working quickly to resolve the problem and apologize for the delay.
    Check back later or visit our website for status updates.
    In addition, you can get help in the forums of the Creative Cloud.
    Thank you for understanding!"
    (I used Google Translate)
    Somebody help?

    You do not need ?&promoid=KRUVP at the end of the url but it should not matter.
    One thing to check is if your hosts file is modified. Open the Command Prompt and type: notepad %systemroot%\system32\drivers\etc\hosts
    This will open a read-only copy of your host file in Notepad. Are there any entries in this file regarding adobe.com?
    The other thing you can do is open the Developer Tools in the Chrome browser. On Windows press Ctrl + Shift to open them. Switch to the Network tab. Reload the page by pressing Ctrl + r. Check for any 4xx or 5xx errors which should be colored red.
    Post screenshots of your results or send me a private forum message with the information.

  • Trying to install Support for DTS packages in SQL server 2008

    Hi all
    I am trying to follow the instructions in the following link...
    technet.microsoft.com/en-us/library/ms143755(v=sql.105).aspx
    ...to install support for DTS packages - when it says on the Feature Selection page, select Integration Services - none of the installs I have tried show this as an option - what should I be installing in order to see this and get this feature installed?
    I just need to be able to view some DTS packages - help!
    Thank you! James

    Hello James,
    as can be read in the article:
    Microsoft SQL Server 2008 Service Pack 2 Feature Pack => SQLServer2005_BC.msi  (BC
    = backward compatibilty).
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

Maybe you are looking for