Log file isnt named per my expression

Hi, we run std 2008 r2.  
I think I'm in a catch 22 but maybe the community can help. 
I configured ssis logging using a flat file conn manager I named ssislog.  It's connection property is set in an expression as follows...
@[User::logDir] + (DT_WSTR, 50) (YEAR( @[User::Date] ) ) + RIGHT("0" +  (DT_WSTR, 50) (MONTH( @[User::Date] ) ),2) + RIGHT("0" +  (DT_WSTR, 50) (DAY( @[User::Date] ) ),2) + ".txt"
variable User::Date is the target of a resultset mapping in an exec sql task.  The latter task is the first component in the pkg.
My logs keep appending to the same datestamped log file based on the initial value stored in variable User::Date at development time.  Probably because ssis is put in a quandary needing to bind the log file name before the 1st component runs.
what are my options?  I'm going to look for a file rename feature in ssis and post back here.

Yes, it resolved the log file name as the 1st step and used it all the way.
There is nothing you can do if I understood you need a rolling log file feature.
Arthur
MyBlog
Twitter

Similar Messages

  • Exchange 2010 personal archive database massive log file generation

    Exchange Server 2010 SP3 + Update Rollup 4
    Windows Server 2008 R2, all updates
    VMware ESXi 5.5
    Server config: 2 x Xeon Quad Core 2.20GHz, 16GB RAM
    We recently started using personal archives. I created a database for this purpose ("Archive Mailboxes") on the same datastore as our live mailbox database ("Live Mailboxes"). It works great except that the mailbox maintenance generates
    massive amounts of log files, over 220GB per day on average. I need to know why. The Live Mailbox database generates around 70GB of log files every day. The database sizes are: Live = 159.9GB, Archive = 196.8GB. Everything appears to be working fine, there
    are no Error events related to archiving. There are 10025 MSExchangeMailboxAssistant warning events logged every day. I have moved those mailboxes back-and-forth to temp databases (both Live and Archive mailboxes) and the 10025 events have not stopped so I'm
    reasonably certain there is no corruption. Even if there were it still doesn't make sense to me that over 100 log files are generated every single minute of the day for the Archive store. And it's not that the database isn't being fully backed up; it is, every
    day.
    Do I need to disable the 24x7 option for mailbox maintenance to stop this massive log file generation? Should I disable mailbox maintenance altogether for the Archive store? Should I enable circular logging for the Archive store (would prefer to NOT do this,
    though I am 100% certain we have great backups)? It appears to me that mailbox maintenance on the Live store takes around 12 hours to run so I'm not sure it needs the 24x7 option.
    This is perplexing. Need to find a solution. Backup storage space is being rapidly consumed.

    I'm sure it will be fine for maintenance to run only on weekends so I'll do that.
    We use Veeam B&R Enterprise 7.0.0.833. We do not run incremental backups during the day but probably could if necessary. All this is fine and dandy but it still doesn't explain why this process generates so many logs. There are a lot of posts around
    the internet from people with the same issue so it would be nice to hear something from Microsoft, even if this is expected behavior.
    Thank you for the suggestions!

  • Re: identifying server log file when runningdistributed

    Hi John, I can give you some TOOL code which will get the process
    id, but I do have to stray outside of Framework :-). The following
    code uses classes from the SystemMonitor project which was
    introduced in release 2 of Forte (this code won't work on R1):
    partAgent : SystemAgent;
    pidInst : ConfigValueInst;
    pid : TextData;
    partAgent = SystemAgent(task.Part.Agent);
    pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
    pid = TextData(pidInst.GetData);
    The result is that the variable pid contains the process id in string form.
    This could be converted to numeric form if needed.
    If what you're really after is the partition's log file name, then the following
    code will do the trick (it takes into account the differences in how the log
    files are named for interpreted vs. compiled partitions):
    partAgent : SystemAgent;
    logFileInst : ConfigValueInst;
    logFileName : TextData;
    -- Get our agent and try to get the log file inst
    partAgent = SystemAgent(task.Part.Agent);
    logFileInst = ConfigValueInst(partAgent.FindInstrument('LogFile');
    -- Interpreted partition don't have their own log file, so check
    if (logFileInst = NIL) then
    pidInst : ConfigValueInst;
    pid : TextData;
    -- We must be an interpreted partition get our pid
    pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
    pid = TextData(pidInst.GetData);
    -- Build log file name
    logFileName = 'forte_ex_';
    logFileName.Concat(pid);
    else
    -- Get the name of the log file from the instrument
    logFileName = TextData(logFileInst.GetData);
    end;
    The available agents and their instruments and commands are documented
    in the manual "SystemMonitor Project". I'm at home now, so I don't have
    the page numbers. Some additional agents (which were added after this
    manual went to press) can be found in Tech Note #10475. Also, econsole
    and escript can be handy since any instrument you can see in these tools
    can be accessed from TOOL code. Hope this is of some use.
    Sean
    At 05:24 PM 7/30/96 -0700, John L. Jamison wrote:
    >
    I'd like to solicit some ideas from you folks. As many of you are probably
    aware, when running in distributed mode, log output for server partitions is
    written out to log files on the server partition. However it is sometimes a
    trick trying to identify the process which is running your individual
    partitions, and
    thus knowing which log file to read.
    At one client, we added a 3gl call-out to obtain the process id and return it
    to the client. However this is not a good option at a new client which uses
    Sequent (3gl wrappering difficult in statically linked environments such as
    sequent). I am also aware that Econsole allows you to browse active
    partitions and display log files, but you still have to know which active
    partitions to watch.
    I have not yet seen a way to programmatically obtain the process ID for a
    partition within TOOL and using FrameWork classes.
    What kinds of strategies are folks employing out there?
    Thanks in advance,
    -John
    John Jamison
    Sage Solutions, Inc.
    353 Sacramento Street, Suite 1360
    San Francisco, CA 94111
    415 392 7243 x 508
    [email protected]

    Hi John,
    I think that Sean Fits answered your question about TOOL code to get the PID
    number. I just want to complement on the loging strategy.
    There is one log file for every active partition of an application. I think
    it is useful in some cases that a distributed application gets a centralized
    log file to trace the exact sequential flow of processing among all the
    partitions. This is useful during the initial debuging and tuning. In fact
    something similar to the UNIX syslog file.
    For doing so it is easy to implement a custom central log Mgr in one
    partition and to have all partitions use it when needed (it doesn't prevent
    to continue using the standard LogMgr in addition). This central LogMgr
    automatically adds the date&time plus the node name, partition name, ... to
    the log messages it receives.
    The flags which apply are those of the partition where the central Log Mgr is.
    Because of potential concurency requests from the several partitions
    accessing the central Log Mgr, it is not possible to support the "Put" and
    PutHex" methods. Only complete lines can be logged (Putline and PutHexLine).
    Attached is the TOOL code of my TraceService plan that implements it.
    Remark : the "Phr" in the names relate to the name of the application we
    have here under development.
    To use the central Log Mgr, a partition must create an object of class
    PartitionLog, and then log messages must be sent to it the way you send them
    to the standard LogMgr; it will manage to send them to the central Log Mgr.
    At 17:24 30/07/96 -0700, John Jamison wrote:
    >
    I'd like to solicit some ideas from you folks. As many of you are probably
    aware, when running in distributed mode, log output for server partitions is
    written out to log files on the server partition. However it is sometimes a
    trick trying to identify the process which is running your individual
    partitions, and
    thus knowing which log file to read.
    At one client, we added a 3gl call-out to obtain the process id and return it
    to the client. However this is not a good option at a new client which uses
    Sequent (3gl wrappering difficult in statically linked environments such as
    sequent). I am also aware that Econsole allows you to browse active
    partitions and display log files, but you still have to know which active
    partitions to watch.
    I have not yet seen a way to programmatically obtain the process ID for a
    partition within TOOL and using FrameWork classes.
    What kinds of strategies are folks employing out there?

  • Export log file send through email

    Hi,
    Basically i send the export log file from the database to my inbox(outlook express). Please let me know how can i send the log from the oracle 9i rel 2 database.
    Thanks
    Noman Nishat

    I didn't get your point. Can you send me the steps of this. I am using windows 2000 Advance Sever. The export parameter are
    USERID=username/password@service
    FILE=c:\Export_live\live.dmp
    ROWS=Y
    OWNER=live
    INDEXES=Y
    LOG=c:\Export_Log\live.log
    Now the log file is genrated on (C drive). I need to send this log file to my inbox(outlook express) i.e [email protected]
    I hope that time you better understand that what i want ?

  • Maximum number of events per audit log file must be greater than 0.

    BOE-XI (R2)
    Windows Server 2003
    Running AUDIT features on all services.
    Report Application Server (RAS) keeps giving the following error in the Windows Application Event Log.
    Maximum number of events per audit log file must be greater than 0.  Defaulting to 500.
    I am assuming that this is because the RAS is not being used by anyone at this time - and there is nothing in the local-audit-log to be copied to the AUDIT database.
    Is there any way to suppress this error...?
    Thanks in advance for the advice!

    A couple more reboots after applying service pack 3 seemed to fix the issue.
    Also had to go to IIS and set the BusinessObjects and CrystalEnterprise11 web sites to use ASP .NET 1.1 instead of 2.

  • Redo Log Files - more than 12 per hour

    Hello @all,
    I have a problem with my redo log files. I get more than 12 switches per Hour. I have 3 Files with 5oM size. I increased the sitz to 15o M, but
    I still have 12 switches per hour.
    Do anyone know, what I did wrong?
    Database:
    Oracle 9i
    Thanks
    Martin

    user9528362 wrote:
    Hello @all,
    yes I know, that 3 switches per hour are perfekt, but I had increased the Size from 5o M to 15oM already and the amount from switches, are not reduced.
    So there must be something else, that causes the log switches.Martin,
    As I said somewhere above too, 150meg is a tiny size if you are managing a production db. I have already mentioned that make your log file size to at least 500meg and than check. As for the high redo activity, only you can confirm that whether this has been started from now only or was happening before too? In anycase, for an active oltp, 500 to 1gb of redo log file size should be okay.
    For the extra redo generation, you have been given link for mining log files using logminer. Try using it to see what is causing extra redo.
    HTH
    Aman....

  • TMG Logs file Naming Convention

    Hi,
    Can i change the TMG logs file naming convention. I am using Wc3 Extended log file format.
    Default is: ISALOG_yymmdd_FWS_nnn
    Want to change in ISALOGTMG01_yymmdd-FWS_nnn
    Thanks

    Hi,
    I haven't seen a way to change the log name. But you could change the location of the log to ISALOGTMG01 folder you created. Can this help?
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Changing the Naming convention of Log Files

    Hi,
    Is there a way to change the naming convention of log files. Instead of
    00000000.jdb, 00000001.jdb, ... to
    DB000000.jdb, DB000001.jdb etc
    Thanks in advance.

    No, there isn't a way to do that. We didn't anticipate a need to do that -- could you please explain the need?
    Putting a prefix on the file name would unnecessarily limit the total size of the data set, if file names are limited to the 8.dot.3 format as you've shown.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to save captured data to a log file to prevent lag?

    Here is my VI.
    I read in an string of this format (the channels number are now 32 only but will like to increase up to more than 10000 later)
    Time\sStamp\tChannel:00\tChannel:01\tChannel:02\tC​hannel:03\tChannel:04\tChannel:05\tChannel:06\tCha​nnel:07\tChannel:10\tChannel:11\tChannel:12\tChann​el:13\tChannel:14\tChannel:15\tChannel:16\tChannel​:17\tChannel:20\tChannel:21\tChannel:22\tChannel:2​3\tChannel:24\tChannel:25\tChannel:26\tChannel:27\​tChannel:30\tChannel:31\tChannel:32\tChannel:33\tC​hannel:34\tChannel:35\tChannel:36\tChannel:37\tIP\​sAddress\t\n
    The problem I am now having is that, the data is through UDP sending in, the program start off normal capturing all data, but when data are captured and saved to the .log file after an hour or more, some of the data will start to be missed.
    I guess this is beause the .log file is becoming larger, and in the rate of 10Hz (now), the file open and close can't chase up? so some data are missed?
    Anyone could advice or amend the VI so that I could have a better way to save the captured data? making a buffer? or what so ever? Hope someone could help =]
    Thanks.
    Attachments:
    myVI.zip ‏32 KB

    milkbottlec wrote:
    Just found some error when the data are saved.
    At some point, there data just copy this whole thing and save in the middle of the excel
    ""Time\sStamp\tChannel:00\tChannel:01\tChannel:02\​tChannel:03\tChannel:04\tChannel:05\tChannel:06\tC​hannel:07\tChannel:10\tChannel:11\tChannel:12\tCha​nnel:13\tChannel:14\tChannel:15\tChannel:16\tChann​el:17\tChannel:20\tChannel:21\tChannel:22\tChannel​:23\tChannel:24\tChannel:25\tChannel:26\tChannel:2​7\tChannel:30\tChannel:31\tChannel:32\tChannel:33\​tChannel:34\tChannel:35\tChannel:36\tChannel:37\tI​P\sAddress\t\n""
    I don't know which part handling the error is wrong.
    If possible, maybe could you help me delete the whole auto naming function (move it aside) and just add in a promt user for saving directory thing ok?
    Thanks!
    Here is the file and i added the excel in.
    Hi milkbottlec,
          Regarding the headings in the middle of your file, I imagine the filename changed temporarily.  When the name changed BACK to an exisiting name, the headings were added (anticipating a new file.)  I'm more curious about the "lost" data problem.  Do you still see holes in the data?  If so, were any bad filenames recorded?
    Sure! Why not present a file-dialog instead of automatically generating filenames,  Looks like you've mastered the "True/False" case, why not build on what you know?  Experiment with the File Dialog express VI on the FILE\Advanced File Functions palette.  Personally, I'm a fan of auto-generated filenames, though, not necessarily built from the data. 
    Cheers!
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)

  • Exchange 2010 SP3, RU5 - Massive Transaction Log File Generation

    Hey All,
    I am trying to figure out why 1 of our databases is generating 30k Log Files a day! The other one is generating 20K log files a day. The database does not grow in size as the log files are generated, the problem is log file generation.
    I've tried running through some of the various solutions out there, reviewed message tracking logs, rpc client access logs, IIS Logs - all of which show important info, but none of which actually provide the answers.
    I Stopped the following services to see if that would affect the log file generation in any way, and it has not!
    MS Exchange Transport
    Mail Submission
    IIS (Site Stopped in IIS)
    Mailbox Assistants
    Content Indexing Service
    With the above services stopped, I still see dozens (or more) log files generated in under 10 minutes, I also checked mailbox size reports (top 10) and found that several users mailboxes were generating item count increases for one user of
    about 300, size increases for one user of about 150Mb (over the whole day).
    I am not sure what else to check here? Any ideas?
    Thanks,
    Robert
    Robert

    Hmm - this sounds like an device is chewing up the logs.
    If you use log parser studio, are there any stand out devices in terms of the # of hits?
    And for the ExMon was that logged over a period of time?  The default 60 second window normally misses a lof of stuff.  Just curious!
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
    Rhoerick, 
    Thanks for the response. When checking the logs the highest number of hits were the (Source) Load Balancers, Port 25 VIP. The problem i was experience was the following: 
    1) I kept expecting the log file generation to drop to an acceptable rate of 10~20 MB Per Minute (Max). We have a large environment and use the exchange sevrers as the mail relays for the hated Nagios monitoring environment
    2) We didn't have our enterprise monitoring system watching SMTP traffic, this is  being resolved. 
    3) I needed to look closer at the SMTP transport database counters, logs, log files and focus less on the database log generation, i did do some of that but not enough of that. 
    4) My troubleshooting kept getting thrown off due to the monitoring notifications seeming to be sent out in batches (or something similar) stopping the transport service for 10 ~ 15 minutes several times seemed to finally "stop the transactions logs
    from growing at a psychotic rate". 
    5) I am re-running my data captures now that i have told the "Nagios Team" to quit killing the exchange servers, with their notifications, sometimes as much as 100+ of the same notifications for the same servers, issues. so far at a quick glance
    the log file generation seems to have dropped by about 30%. 
    Question: What would be the best counters to review in order to "Put it all together"? Also note: our Server roles are split, MBX and CAS/HT. 
    Robert 
    Robert

  • 300 MB to 1.2 GB Forte log file automatically created

    General information
    ===================
    -One server: Windows NT 4.0 Server Enterprise Edition (service pack 6a), PC/x86, dual Pentium Pro 200 MHz.
    -Five workstations: Windows NT 4.0 Workstation (service pack 6a), PC/x86.
    -Forte 4GL 3.0.N.0.
    -SQL Server 7.0 (service pack 3), clustered.
    -Forte application partitioned into 1 server process (runs on server) and 1 client process (runs on all workstations).
    Has anyone seen this?...
    Problem description
    ===================
    About once per month, our Forte server partition log file grows to 300+ MB, and then the process crashes. This problem is not reproducible, and I don't yet know if there is any pattern in the sequence of events that leads to the error. All the log files appear to be similar because the traceback shows the same method.
    The error started happening after upgrading from Forte 3.0.G.2 to Forte 3.0.N.0.
    All of the client and server log files have the string "<unknown>" where the Forte environment name normally is. I believe that nodemgr.exe crashes, and usually it cannot be restarted. When the Forte Environment Manager is manually restarted, a Windows NT "Services" error window appears that says - "Could not start the Forte Environment Manager 3.0.N.0 service on \\SERVERA. Error 1067: The process terminated unexpectedly." Rebooting the server always recovers.
    Here is an example of the text extracted from one of the huge Forte log files...
    NOTE:
    -Some of the text lines may be wrapped (in the actual file, none of the lines are wrapped).
    -forte_ex_274.log was 263,119 KB.
    -The string "..." means that many lines are not included.
    -All hex values, except for addresses, have been changed to "0x00000000".
    -Note that "Page:45713 @ 0x02CA4400" is included, but appears to be empty.
    ********** BEGINNING OF FILE **********
    ftexec Forte Version 3.0.N.0
    Windows NT
    Forte Application Environment (tm), Forte Runtime Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-2000, Forte Software, Inc. and its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1994-2000, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws of the United States.
    Wed Oct 11 21:52:48 2000
    Process ID 274
    Attached to manager for node SERVERA.
    Loading partition IBIS_cl0_Part1 built on 23-Aug-2001 07:10:49.
    aud Sun Aug 26 05:45:17 : Loading partition IBIS_cl0_Part1 built on 23-Aug-2001
    07:10:49.
    Attached to manager for node SERVERA.
    ! Interpreter Traceback
    Traceback:
    IbisCommunicationHandler.ReadSocket at offset 268
    # Page 45713 contains Object 0x02CA4408 that has bad SIZE(0)
    # Scanning for value in range 0x2ca4400:0x2ca4410
    # Found 0x2ca4408 at qqin_ActivationRecord+0x28(0x2ca3bb8)
    ! Page:45713 @ 0x02CA4400 { Small Object Mobile  } Current
    # Page 45714 should be marked SPAN.
    # Page 45715 should be marked SPAN.
    # Page 45716 should be marked SPAN.
    # Page 45717 should be marked SPAN.
    # Page 45718 should be marked SPAN.
    # Page 45719 should be marked SPAN.
    # Page 45720 should be marked SPAN.
    # Page 45721 should be marked SPAN.
    # Page 45722 should be marked SPAN.
    # Page 45723 should be marked SPAN.
    # Page 45724 should be marked SPAN.
    # Page 45725 should be marked SPAN.
    # Page 45726 should be marked SPAN.
    # Page 45727 should be marked SPAN.
    # Page 45728 should be marked SPAN.
    # Page 45729 should be marked SPAN.
    # Page 45730 should be marked SPAN.
    # Page 45731 should be marked SPAN.
    # Page 45732 should be marked SPAN.
    # Page 45733 should be marked SPAN.
    # Page 45734 should be marked SPAN.
    # Page 45735 should be marked SPAN.
    # Page 45736 should be marked SPAN.
    # Page 81525 should be marked SPAN.
    # Page 81526 should be marked SPAN.
    # Page 81527 should be marked SPAN.
    # Page 81528 should be marked SPAN.
    # Page 81529 should be marked SPAN.
    # Page 81530 should be marked SPAN.
    # Page 81531 should be marked SPAN.
    # Page 81532 should be marked SPAN.
    # Page 81533 should be marked SPAN.
    # Page 81534 should be marked SPAN.
    # Page 81535 should be marked SPAN.
    ! Page:17536 @ 0x01120000 { Small Object Mobile  } Current
    ! 0x01120000: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120010: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120020: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120030: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120040: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120050: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120060: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120070: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120080: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120090: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011200F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120100: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120110: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120120: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120130: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120140: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120150: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120160: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120170: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120180: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120190: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011201F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120200: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120210: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120220: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120230: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120240: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120250: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120260: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120270: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120280: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120290: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011202F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120300: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120310: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120320: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120330: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120340: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120350: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120360: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120370: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120380: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120390: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011203F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! Page:17537 @ 0x01120400 { Small NonObject Mobile  } Current
    ! 0x01120400: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120410: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120420: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120430: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120440: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120450: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120460: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120470: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120480: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120490: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011204F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120500: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120510: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120520: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120530: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120540: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120550: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120560: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120570: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120580: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120590: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011205F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120600: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120610: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120620: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120630: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120640: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120650: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120660: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120670: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120680: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120690: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011206F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120700: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120710: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120720: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120730: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120740: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120750: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120760: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120770: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120780: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x01120790: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x011207F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! Page:17538 @ 0x01120800 { Large Object Mobile  } Current
    ! Page:45712 @ 0x02CA4000 { Small NonObject Mobile  } Current
    ! 0x02CA4000: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4010: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4020: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4030: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4040: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4050: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4060: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4070: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4080: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4090: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA40F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4100: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4110: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4120: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4130: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4140: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4150: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4160: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4170: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4180: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4190: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA41F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4200: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4210: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4220: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4230: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4240: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4250: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4260: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4270: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4280: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4290: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA42F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4300: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4310: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4320: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4330: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4340: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4350: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4360: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4370: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4380: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4390: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA43F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! Page:45713 @ 0x02CA4400 { Small Object Mobile  } Current
    ! Page:45714 @ 0x02CA4800 { Small Object Mobile  } Current
    ! 0x02CA4800: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4810: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4820: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4830: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4840: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4850: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4860: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4870: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4880: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4890: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA48F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4900: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4910: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4920: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4930: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4940: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4950: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4960: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4970: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4980: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA4990: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA49A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x02CA49B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F030: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F040: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F050: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F060: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F070: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F080: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F090: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0A0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0B0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0C0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0D0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0E0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F0F0: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F100: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F110: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F120: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F130: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F140: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F150: 0x00000000 0x00000000 0x00000000 0x00000000
    ! 0x0495F160: 0x00000000 0x00000000 0x00000000 0x00000000
    ********** END OF FILE **********

    This appears to the general output generated when a partition gets a SEGV or AccessViolation type problem. The runtime code always performs a memory check to determine if a possible cause for the problem was a memory corruption. In this case it thinks it found a problem and is attempting to dump information related to the problem. There was a bug in this routine that caused to dump more stuff than was really needed (I believe that this was fixed in 5.0)
    The actual error was someone wrote a 0 on the header of an object that describes the size of the object. Given that this was the first object on the page it could be a problem with someone overrunning the end of an object on the previous page.
    This can either be a runtime problem or an application problem. Its a little hard to tell from this output. The best way to collect more information would be to install MSDEV/Visual Studio on the machine and enable
    JustInTimeDebugging (this is normally enabled for you) and then add the following environment variable
    FORTE_NOHANDLER=yes
    This bypasses the exception handling and causes the MSDEV debugger to start. This should allow you to get a stack trace which will give more clues as to the problem.

  • Delay in event driven log file data writing? Please help!!!

    System Information
    Operating System: XP
    Labview: 8.2
    Force sensor data acquisition via DAQPad-6070E
    Actuator: Actuator via MCS-3D controller
    Programming Information
    Number of events: 13
    Position read: Reads the position and the force sensor data every second.
    Move I &  Forward:  Moves the actuator forward with a define step size
    Two actuators are made to travel certain distance. A force sensor is attached to the system. The aim here is to acquire continuous data as per the defined time wait (1 sec). The data is logged in a text file which gives the position travelled from the actuator, the force sensor data with a time stamp.
    The issues I am encountering is during writing a file.
    For ex: When even is activated ( Move actuator at defined stepsize) the event are logged into the log file but the positions are updated into the log file only when the next event is activated. So it means that the positions and the force values are updated into the logfile after the consecutive event is executed. If you see the logfile ex inside the attachment the red block explains the event executed but the position are updated in the next line (event). This file is just for example.
    Please help here I am going wrong!
    Thanks in advanced
    Attachments:
    EventMoveex.PNG ‏582 KB
    Logfile.PNG ‏64 KB

    Dear Method M
    I find it out what was going on. As you mentioned that I was writing the values before the actuators achieving the final position, so I introduced a delay between the execution of two SubVI's. It isnt a clean method but it works.
    thank you very much!
    Regards
    Itz

  • Help on Reading and Reporting From A log File

    Hi there
    I need any assistance on developing a class that is able to read from a log file and then be filtered and put into a report. I need to be able to search on the log files per criteria.

    Chainsaw:
    http://logging.apache.org/log4j/docs/chainsaw.html

  • How to Properly Protect a Virtualized Exchange Server - Log File Discontinuity When Performing Child Partition Snapshot

    I'm having problems backing up a Hyper-V virtualized Exchange 2007 server with DPM 2012. The guest has one VHD for the OS, and two pass-through volumes, one for logs and one for the databases. I have three protection groups:
    System State - protects only the system state of the mail server, runs at 4AM every morning
    Exchange Databases - protects the Exchange stores, 15 minute syncs with an express full at 6:30PM every day
    VM - Protecting the server hosting the Exchange VM. Does an child partition snapshot backup of the Exchange server guest with an express full at 9:30PM every day
    The problem I'm experiencing is that every time the VM express full completes I start receiving errors on the Exchange Database synchronizations stating that a log file discontinuity was detected. I did some poking around in the logs on the Exchange server
    and sure enough, it looks like the child partition snapshot backup is causing Exchange to truncate the log files even though the logs and databases are on pass-through disks and aren't covered by the child partition snapshot.
    What is the correct way to back up an entire virtualized Exchange server, system state, databases, OS drive and all?

    I just created a new protection group. I added "Backup Using Child Partition Snapshot\MailServer", short-term protection using disk, and automatically create the replica over the network immediately. This new protection group contains only the child partition
    snapshot backup. No Exchange backups of any kind.
    The replica creation begins. Soon after, the following events show up in the Application log:
    =================================
    Log Name:      Application
    Source:        MSExchangeIS
    Date:          10/23/2012 10:41:53 AM
    Event ID:      9818
    Task Category: Exchange VSS Writer
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      PLYMAIL.mcquay.com
    Description:
    Exchange VSS Writer (instance 7d26282d-5dec-4a73-bf1c-f55d5c1d1ac7) has been called for "CVssIExchWriter::OnPrepareSnapshot".
    =================================
    Log Name:      Application
    Source:        ESE
    Date:          10/23/2012 10:41:53 AM
    Event ID:      2005
    Task Category: ShadowCopy
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      PLYMAIL.mcquay.com
    Description:
    Information Store (3572) Shadow copy instance 2051 starting. This will be a Full shadow copy.
    =================================
    The events continue on, basically snapshotting all of Exchange. From the DPM side, the total amount of data transferred tells me that even though Exhange is trunctating its logs, nothing is actually being sent to the DPM server. So this snapshot operation
    seems to be superfluous. ~30 minutes later, when my regularly scheduled Exchange job runs, it fails because of a log file discontinuity.
    So, in this case at least, a Hyper-V snapshot backup is definitely causing Exchange to truncate the log files. What can I look at to figure out why this is happening?

  • How to find discoverer log files and CPU usage

    Hi,
    i have a report running very slow in prod. but runs fast in dev and qa.
    **Where/how can i find the Log files generated after the report runs?**
    **Also i wanted to see how i can find the CPU Usage**
    i searched online for CPU usage... and found this --> ""For the CPU usage of these servlets, please navigate to the Discoverer application page from the OC4J_BI_Forms home page in the EM standalone console.""
    can anyone tell me how to navigate to OC4J_BI_Forms home page in the EM standalone console?
    Thanks!
    gayatri

    Hi gayathri,
    This link would help i suppose
    http://docs.huihoo.com/oracle/docs/B14099_19/bi.1012/b13918/maint.htm#i1025807
    and http://docs.huihoo.com/oracle/docs/B14099_19/bi.1012/b13918/tshoot.htm#CHDHFJDE
    Be careful,if not done without prior knowledge it would mess up.So mostly this job should be done by DBA of your company.They can log in as sysadministrator to get to "Enterprise Manager" and do as per the link
    Best Wishes,
    Kranthi.

Maybe you are looking for

  • How to increase the performance of a report

    can any body tell me how to increase the performance of a report?//// i have prepared a report to show the expense detail .I have used BSIS and BSAS table. But whenever I am executing it is facing runtime error (TIME_OUT error ). Moderator Message: D

  • Deploying java class file

    how do i deploy an application so that they are executable when i just double click them....i've tried jar files but i need to type the command in the command line to execute them...

  • Renaming columns in 9i - sp

    Here is a stored proc we use to rename columns. It's not bulletproof, but it will get you started: create or replace procedure &&1.RenameColumn(uid IN varchar2,tablename IN varchar2,oldcolumn IN varchar2,newcolumn IN varchar2) as      dt varchar2(106

  • Cannot access settings menu

    The date and time are wrong on my Vado and I've read where you should be able to correct it by pressing play/pause and delete at the same time but I have tried a thousand times, others have tried, no menu comes up when we press these buttons I either

  • Edit in Audition

    OK, relatively new to Premiere after the inevitable FCP switchover. I want to send a clip to Audition to do some more heavy duty audio editing (can't seem to link specific audio filter settings to keyframes like in FCP) Each and every time I try to s