Using multiple configuration files in Awesome's rc.lua?

I'm fairly new to awesome. I have managed to configure rc.lua to my liking but have been troubled by the fact that I need to go through the entire configuration file when I would like to update just a hotkey or menu item. This leaves room for errors and mistakes that could break my config.
Ideally, I would like to be able to insert pieces of code from other files into my rc.lua. I realize this is already being done through things like vicious, but am wondering what the best way to do this would be for small snippets?
For example, I would like to have one file for hotkeys, one file for my menu items, one file for my widget configuration. I've done a little bit of reading on lua and believe dofile('filename") should work but would appreciate examples from other people who have done something similar.
Thanks in advance
Multi

require("keys")
Then create a file named keys.lua
Was that what you wanted?

Similar Messages

  • How to use multiple configuration files in a web Application

    Hi,
    I am using JDev 11 TP3,JBoss4.2.1,Trindad 1.2.4.
    In my project I have to use a set of (Login) pages over several other projects.
    So I stored those pages (& backing beans) at an external location.
    Now while editing the deployment profile of the web application I included the login pages from external location using "Contributors".
    This way I was able to bring all the resources in the war. But the Faces-config.xml which contains the managed-bean registration of the login pages does not get included.
    1. Either I could change the name of the external faces-config and register it in the current project by includeing it. OR
    2. I could mention the managed-bean info in the current project's faces-config.
    I want to use option 1.
    How may I do it??

    Hi,
    if you package the managed beans in JAR files and add the faces-config.xml in the META-INF directory of it then it automatically registers at runtime
    Frank

  • Is it possible to use multiple css files in epub?

    For fixed layout I would like to use multiple css files.
    Is it allowed  by apple requirements?

    Yes. ePub suports multiple CSS files and therefore so does Apple iBooks.

  • How to use multiple video files??

    hi all,
    i am using flex 4 ...
    now i have designed video player..
    i used single flv file for execution..
    how to use more flv files in tis program???
    i have included program also..
    can any one reply for this...
    thanks in advance...
    regards,
    saran r
    video.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init()" height="700" >
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.UIComponent;
                import flash.events.NetStatusEvent;
                import flash.media.Video;
                import flash.net.NetConnection;
                import flash.net.NetStream;
                private var nc:NetConnection;
                private var stream:NetStream;
                public var videoDuration:Number;
                public var nsClient:Object = new Object();
                private var videoComp:Video = new Video();
                private var meta:Object = new Object();
                private var timer:Timer = new Timer(100);
                private var uiComp:UIComponent = new UIComponent();
                private function init():void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    nc.connect("rtmp://localhost/saran");                 
                    this.addElement(uiComp);
                    uiComp.addChild(videoComp);
                    timer.addEventListener(TimerEvent.TIMER,timerHandler);
                    timer.start();
                private function netStatusHandler(event:NetStatusEvent):void
                    trace("Code ===>>>    "+event.info.code);
                    if(event.info.code == "NetConnection.Connect.Success")
                        connectStream(nc);
                private function connectStream(nc:NetConnection):void {
                    stream = new NetStream(nc);
                    videoComp.attachNetStream(stream);
                    stream.play("Terminator")
                    // stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    stream.client = nsClient//new CustomClient();
                    nsClient.onMetaData = metadataHandler;
                    trace("stream ===>>>    "+stream.currentFPS);
                    //responder = new Responder(onResult);
                    // nc.call("getStreamLength", responder, "bikes" );
                private function metadataHandler(metadataObj:Object):void
                    meta = metadataObj;
                    videoComp.width = metadataObj.width;
                    videoComp.height = metadataObj.height;
                    //positionBar.move(videoComp.x, ((videoComp.y + videoComp.height)+20));
                    //positionBar.width = videoComp.width;
                    trace("Duration ====>>>>   "+meta.duration);
                private function timerHandler(event:TimerEvent):void
                    //trace("Timer called.........."+stream.time);
                    //positionBar.setProgress(stream.time, meta.duration);
            ]]>
        </fx:Script>
    </s:Application>

    I have the same question but I am using two pc's

  • Use of Configuration file in other appliance

    We have a disaster recovery ESA which needs to be in-sync with the production ESA. All the appliances are C670s. Is there an easier way to synchronize both production and DR appliance other than clustering? Can configuration file from production ESA be imported to the ESA in DR?

    As long as they are both running the same AsyncOS revision - yes.  
    Save the production ESA configuration.
    Save the DR ESA configuration.
    Open both with text editor (Notepad++, etc.) and copy the "Network Configuration" section for the DR ESA.  Paste this same section to the production ESA configuration - and save as different file name, ie. new_DR_esa.xml.
    Load this configuration from the DR ESA, submit/commit.
    http://www.cisco.com/c/en/us/support/docs/security/email-security-appliance/117841-technote-esareplace-00.html

  • Multiple configuration files in one application in struts using jDeveloper

    I am using Jdeveloper 9.0.3 using this i tried to create two struts-config.xml file with different names and configured them in the web.xml files( struts 1.1 feature)
    as
    <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/struts-config.xml, /WEB-INF/struts-config-reg.xml</param-value>
              </init-param>
    but i am getting parsing error for this. Please tell me how it can be done in Jdeveloper

    I have been trying to do something similar, but I keep receiving the following exception:
    java.lang.NoSuchFieldError: appConfig
    at oracle.jbo.html.struts11.BC4JRequestProcessor.processContent(BC4JRequestProcessor.java:148)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:233)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    My web.xml looks like:
    <servlet>
    <servlet-name>bc4jaction</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>mapping</param-name>
    <param-value>oracle.jbo.html.struts11.BC4JActionMapping</param-value>
    </init-param>
    <init-param>
    <param-name>BC4JDefinition</param-name>
    <param-value>Struts</param-value>
    </init-param>
    <!--<init-param>-->
    <!-- <param-name>config</param-name>-->
    <!-- <param-value>/WEB-INF/struts-config-documentservices.xml</param-value>-->
    <!--</init-param>-->
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>config/documentservices</param-name>
    <param-value>/WEB-INF/struts-config-documentservices.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>

  • Using Multiple Properties Files in Struts Framework

    Hi Everybody!
    I just to know how to use a multiple message-resources files in a Struts Framework.
    I've 2 properties file :
    1. ApplicationResources_A.properties
    2. ApplicationResources_B.propertiesI put the files under WEB-INF/classes dir.
    My configuration in struts-config file something like below:
    <!--  Begin Testing -->
         <message-resources key="A" parameter="ApplicationResources_A" />
         <message-resources key="B" parameter="ApplicationResources_B" />
    <!--  End Testing -->
    </struts-config>
    if my JSP code is like below , this error is thrown:
    org.apache.jasper.JasperException: Cannot find message resources under key A
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message bundle="A" key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message bundle="B"  key="user.lang.desc"/></td>
      </tr>
    but  if I change the  JSP code like below it  work fine:
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message  key="user.lang.desc"/></td>
      </tr>
    In this code , I dont know  which resources file is used.
    So how do I solve this problem. Thanks you.

    I have defined the following:
    struts-config.xml
    <message-resources key="ldap" parameter="com/project/struts/ldap"/>
    Action.java
    In execute method:
    MessageResources messageResources= MessageResources.getMessageResources("com/project/struts/ldap");
    System.out.println("INITIAL_CONTEXT_FACTORY"+messageResources.getMessage("INITIAL_CONTEXT_FACTORY"));
    and it is working, however I have to change "com/project/struts/ldap" value in Action.java file whenever there is any change in name or location of ldap.properties.
    Can I access this properties in such way that I don't have to change parameter path manually in Action.java (modifying in struts-config.xml is okay)? like access through key="ldap" or something.
    Thanks and regards,

  • Weblogic12c and JDK 7 together not using login configuration file properly

    Hello,
    Little puzzled by this.
    I ve installed JDK 7 along with Weblogic 12c and made a custom installation of Weblogic to use JDK 7 as the Local JDK
    as mentioned in this doc
    http://docs.oracle.com/cd/E24329_01/doc.1211/e24492/jdk7.htm
    The JAVA_HOME is pointing to JDK 7
    When i configure the login.config.url.1 under JAVA_HOME/jre/lib/security/java.security file to use our own specific file which is used for authentication against LDAP,
    deploy the app and try to login, authentication fails(LoginException is thrown), like as if it s not understanding this file or the path or similar.
    When i configure the same to use the JDK 6 that comes along with Weblogic 12c, everything is fine.....
    Not sure where the problem lies.
    Is there any other setting i need to do?
    Any help is greatly appreciated.
    The Exception thrown is
    javax.security.auth.login.LoginException: java.util.MissingResourceException: Can't find resource for bundle sun.security.util.AuthResour
    ces, key username: at java.util.ResourceBundle.getObject(ResourceBundle.java:393)
    at java.util.ResourceBundle.getString(ResourceBundle.java:353)
    at ........
    Edited by: 902337 on Jan 6, 2012 11:08 AM

    Just adding here that if i install JDK 6 outside of weblogic 12 and point to it, that also works fine.
    The problem seems to be weblogic 12 pointing to JDK 7 only ...

  • Using multiple XML files for drill-down

    I have an XML file which populates a graph showing months of the year.  I have 12 other XML files which have data for each day of the month running from 1 - 31.
    What I would like to do is use the 12 XML files to drill down for each of the months on my graph, but am struggling to get it to work.
    The XML that populates the graph is in the following format :
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item month="Jan" value="536102" />
         <item month="Feb" value="484570" />
         <item month="Mar" value="155840" />
    and the other XML files are in the following format:
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item Timestamp="24/04/2010" Value="4178" />
         <item Timestamp="25/04/2010" Value="8075" />
         <item Timestamp="26/04/2010" Value="14611" />
    Would it be simpler to combine all the XML into one file?
    Sorry that this is a bit vague, but if you could help me that would be appreciated. Let me know if you require any more information.
    Thanks.

    You can only import a single XML file. You may have an xml file that has multiple occurances of data but it must be a single xml file.
    So you woudl have to find a way to combine all of those xml files into one then do the import.
    Paul

  • Using Multiple iMovie files in iDVD

    After how quickly I learned to use iMovie, I'm quite upset with how difficult it is to do what I want in iDVD. Here's the issue:
    My parents went on a trip last year and took a lot of video (over 9 hours). Over the past few months, I've pared this down to just under 2 1/2 hours. My sister, who is a journalist, at one point suggested extracting all the audio to make it easier to edit. I'm not sure how much easier this made it, but I did it nonetheless. This made the file just over 50GB, and it was so large that the audio was choppy when I tried to play it as one big file. So I had to cut the movie into 12 files of 10-15 minutes each and finish the editing.
    The point is that now I want to make a DVD out of this, but iDVD won't let me re-combine my 12 files into one big movie with separate chapters. It wants me to have 12 separate movies, each with 3-4 scenes (and even getting it to show all 12 "Play movie" and "Select Scenes" buttons on the menu page is difficult).
    Basically what I want is to show iDVD that after it plays scene 4 from file 1, it should go to scene 1 of file 2, not back to the main menu. This should of course continue until all 12 files are done. I also want the "Scene Selection" menu to include all 40-50 scenes instead of having 12 different "Scene Selection" menus, but so far as I can tell, there's no way to add something so simple as a "next" button! If I could do this, then the main menu would have only two buttons (play movie and select scenes) instead of 24.
    Is there any way to make iDVD understand that these 12 files are really one movie without having to combine them all together again in iMovie? Even doing that would require me to purchase an external hard drive, since the separate files are now 60GB and I only have 47GB free space... and I don't want to paste one file into another and then immediately delete it (which I know would allow me to combine all files without need of extra space) since this leaves me with no back up if something goes wrong during the pasting of these large 4-5GB files.
    Or does someone know of a different, free, iMovie-compatible (so I don't have to remake all my chapter titles) program that lets me do what I want for myself?

    I agree with everything that F Shippey said.
    For future reference, I believe that your problem started when you extracted all of the audio from your video files. When you did that, you created several audio files. The number, not the size, of audio files likely is what caused that choppy playback that in turn moved you to cut up your movie into 12 files. That made a mess, because when you exported to iDVD you were stuck with 12 movies that you cannot not combine in iDVD. Of course, you had no way of knowing that extracting the audio into several clips would cause the choppiness. (The choppiness will be only on playback, not in your final product.) You would have had to have been reading the iMovie forum for a couple of months, where audio stutter and skipping have been frequently discussed. The next time around I would suggest that you leave the audio embedded in the video and not extract it. Embedded audio does not seem to cause stutter on playback. Also, in your iMovie preferences, set your playback quality to Standard (smoother) playback, and that might help.
    If your sister or friend has an apple computer with some extra disk space, you could back up your movie to that computer using a firewire connection. But external drives are so inexpensive now, you might consider buying an Apple formatted external drive for yourself. (A windows formatted one will not work.) You can always use more storage space even after you are done with this project.
    Sorry for all your trouble here. We've all gone through that frustration at one time or other as we learn our way through these movie programs. The good news is that you've done nothing that isn't correctible. Some folks lose their entire project, which increases the suicide rate considerably.

  • Using multiple XSL files parsing a XML file

    Hi,
    Can a single XML be procesed by a XSL file in which are included many XSL stylesheet?
    I mean, my Java servlet writes the results of the SQL
    queries in a single XML document. Something like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <body>
    <!-- Part 1 -->
    <record>
    <nombre>Monica</nombre>
    <apellido1>Amann</apellido1>
    <apellido2>Ostos</apellido2>
    </record>
    <!-- Part 2 -->
    <record>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    </record>
    <!-- Part 3 -->
    <record>
    <nombre>Ana</nombre>
    <apellido1>Garcia</apellido1>
    <apellido2>Ostos</apellido2>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    <mano>Decha</mano>
    </record>
    </body>
    I want to be able to apply a particular stylesheet into diferent part of the XML file.
    I mean, i have a XSL (father), in which are included various XSL. My problem is that
    i can apply the bloque1.xsl to process part1 in the xml, and bloque2.xsl to process
    part2 in the xml and the same with the thrid.
    This is my XSL (father), but i don't know whats the way to do it. And i don�t konw if
    it's possible to do it.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version="1.0">
    <xsl:include href="/aplic/fop/ejemplos/bloque1.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque2.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque3.xsl" />
    <xsl:template match="body">
         <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
              <fo:layout-master-set>
              <fo:simple-page-master master-name="simple"
                   page-height="21cm"
                   page-width="21cm"
                   margin-top="1cm"
                   margin-bottom="1cm"
                   margin-left="1.5cm"
                   margin-right="1.5cm">
                   <fo:region-body margin-top="1.5cm"
                   margin-bottom="1.5cm"/>
              </fo:simple-page-master>
              </fo:layout-master-set>
              <fo:page-sequence master-reference="simple">
              <fo:flow flow-name="xsl-region-body">
              <fo:block text-align="right">
                        <fo:external-graphic src="c:\aplic\fop\ejemplos\barcode.jpeg" width="8.1cm" height="3.7cm"/>
              </fo:block>
                   <xsl:apply-templates/>
              </fo:flow>
              </fo:page-sequence>
         </fo:root>
    </xsl:template>
    <!-- Here i should code the rest of the XSL to join the diferents parts of the XML with its corresponded XSL -->
    </xsl:stylesheet>
    Finally i have to produce a single resultant report into pdf outformat. For this, i am using XSL-FO.
    Thanks a lot, and i'm sorry for my english language.

    The examples of Xalan (check xml.apache.org) do just that.
    Micks

  • Using Multiple FLV files on one page with one Flash Player

    I have a web site with 6 videos.  I am hoping to find help figuring out how best to develop the web page that will allow me to associate several FLV files with one Flash Player.  And to have each of the videos "launch" when triggered by a link containing the title.
    I have the video titles as links that will launch the associated FLV file when clicked.  It is a selection menu with the Flash player on the same page.

    I don't know which player you're using, but this is usually done with XML or Javascript files (playlists) because you can't directly link to FLVs and have them play in browsers.
    That said, Flash is dead as a web technology now because it isn't supported by all the latest and most popular web devices (iPhone, iTouch, iPads).  If you want to reach the widest possible audience with your videos, I would suggest using MP4 videos with an HTML5 player that supports playlists. 
    See Pickle Player
    http://www.pickleplayer.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Lots of trouble using multiple photoshop files in FCP 6ont

    Hi, Eric here. I haven't been on this forum for a while (maybe that's a good thing!).
    I'm working on a project that is incorporating photoshop (layered) files. There are 6 pictures on top of each other (each a different person, with the background cut away in Photoshop).
    When I work with one of these files FCP runs a little slow. 2 or 3 files and it runs real slow. 4 or 5 files and it starts crashing every couple minutes. Now, it's at the point where the project literally won't even open. It opens for a brief moment, then before I can do anything it crashes. Other projects still open as normal.
    As far as I know, my computer is not at fault (ie, 1.5 GB SDRAM, Dual 2 GHz PowerPC G5). The computer is almost 5 years old but is running fine otherwise.
    Is this normal or are there some settings I can change, something to upgrade?
    Thank you very much. Happy editing.
    Eric

    Thanks Randy. I did read the thread. I am zooming them but only very slightly. Like 12-15%. All resolutions are 300dpi I know that.
    I'm anxious to try deleting the CMYK file from the timeline/project... IF IT WILL OPEN!!! This is the worst it has been. I've had this happen but usually at least after a restart the timeline will open. This time nothing. Honestly, I don't know if the project will ever open again, but I'll keep trying.
    Otherwise, assuming PS files are 300 dpi, RGB, and not too large, is it common for FCP to get this bogged down when working with them? Just doesn't seem right.
    Thanks again.
    Eric

  • Logging with jdk1.4 - how to add a handler using configuration file

    Hi, all
    I am playing around with java.util.logging in jdk1.4. In particular, I am using a properties file for configuration. However, one thing I couldn't do is to assign a handler, such as the ConsoleHandler, to the com.xyz.foo logger. Everything for the root logger works just fine. Here's the file I use
    handlers= java.util.logging.FileHandler
    .level= INFO
    java.util.logging.FileHandler.pattern = jdk14.log
    java.util.logging.FileHandler.limit = 50000
    java.util.logging.FileHandler.count = 1
    java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
    java.util.logging.ConsoleHandler.level = INFO
    java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
    com.xyz.foo.level = WARNING
    com.xyz.foo.handlers = java.util.logging.ConsoleHandler
    Nothing comes out on the console and everything from the com.xyz.foo logger is logged to jdk14.log file.
    Can any one tell me why the last line has no effect?
    Thanks much!

    Logger configuration files are grossly misunderstood due in large part to extremely poor documentation (some of the worst I have ever seen for the Java platform). The LogManager class uses logger configuration files to do three things:
    1. Load porperties into a private Properties object that application programmers can subsequently access using the getProperty(String name) method in LogManager.
    2. Those properties (or else the documented defaults) are then used to configure the root logger as well as the "global" handlers that are used by the root logger
    3. Finally, whenever a logger is created the Properties object is checked to see if a key exists for the logger name + ".limit". If so, then the logger is assigned that level.
    Notice that nowhere in here does it say that a programmatically created logger is configured. In your case, you must invoke getProperty("com.xyz.foo.handlers"), parse the property value (which is a bit tricky if there is more than one handler class name), load and instantiate the handler class, and invoke addHandler. Great huh? I'm in the middle of a indepth study of logger configuration, and I can tell you for sure the static configuration using configuration files is an order of magnitude harder than dynamic configuration. It offers the advantage of field service engineers being able to change the logger configuration, but at a very significant cost.

  • Location of xdodelivery.cfg delivery Configuration file and how to use it

    I am trying to use xdodelivery.cfg for setting various Server Properties and calling
    this in my Delivery Wrapper Java Program.
    First of all i am not able to find this file anywhere on Oracle Apps APPL_TOP,So i have created this xdodelivery.cfg file in $CUSTOM_TOP/resource directory.
    Then in my Java Program I have set Java system property by calling java.lang.System.getProperties().put("XDO_TOP", "/path/to/xdotop") which points to Physical Directory of as CUSTOM_TOP as /u01/app/appltop/cust
    Then i am Calling req.setServer("PRINTER_NAME") method in Java Wrapper Program to call PRINTER_NAME properties.
    But i am not able to get any success in it. User Guide is mentioning following thing
    "The location of the configuration file is
    {XDO_TOP}/resource/xdodelivery.cfg
    where {XDO_TOP} is a Java system property that points to the physical directory.
    This system property can be set in two ways:
    • Pass -DXDO_TOP=/path/to/xdotop to the Java startup parameter
    • Use a Java API in your code, such as java.lang.System.getProperties().
    put("XDO_TOP", "/path/to/xdotop")
    The system property must be defined before constructing a DeliveryManager"
    Please give me solution of how to go about it .I mean using xdodelivery.cfg file
    Thanks
    Darshan

    Hi,
    I am facing a similar issue while using the configuration file, can you please list out the steps for setting the XDO_TOP Java System property, I have tried setting a Run Time environment variable XDO_TOP to the path of the xdodelivery.cfg file in my qapache port, but the file is not getting picked up.
    Any pointers would be appriciated,
    Thanks,
    Ankul
    [email protected]

Maybe you are looking for

  • Using non-US credit card in US iTunes Store

    I've registered my account on US iTunes store with my US credit card. I'm not living in the States anymore, i'm living in Turkey. I wonder if I change my credit card details with the new Turkish credit card, would my account set to iTunes Turkey? Bec

  • Why can't I take email attach. videos and put them into dropbox or somewhere to save them?

    I am using an ipad 4th generation,  version 7.0.2,  IOS 7.1.2.  Memory 16GB,  processor dual coreA6X. My problem is: recently my daughter sent emails with video attachments of my granddaughter swimming. They came as 3MP and easily opened.  I now woul

  • Vendor field related

    Extended classic scenario.SRM 5.0,ECC 6.0.We went 'live' 4 months back. -There is a need to add a custom field ('field name XYZ' with a check box) to the vendor master.If the check box against the field is 'checked',then the vendor is considered acti

  • How to create a DBlink from oracle database on unix to sqlserver

    Hi I need to create a database link from oracle database on solaris machine to sqlserver database.I found that the database link cannot be created from oracledatabase 10g to microsoft sqlserver.So i am planning to go for another windows server where

  • AVI's GONE! What is going on!

    I have been trying to export all my precious Iphoto content to my new unibody macbook from my 4 month old black macbook! I am running all updated OS and Iphoto - but for some very frustrating reason my AVI video's are now all 0 sec long! I need it ba