Work in a tool, but not another one... same environment.

Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
PL/SQL Release 11.2.0.3.0 - Production
CORE Production 11.2.0.3.0
AMT for Solaris: 11.2.0.3.0 - Production Version
NLSRTL Version 11.2.0.3.0 - Production


I am trying to build a view. It works in TOAD 11.6. It works with Oracle SQL Developer 1.1.3.
But when I try to launch it via SQL/PLUS (putty connection)... it goes down.
alter session set current_schema = fs_nris_fsveg;

CREATE OR REPLACE FORCE VIEW FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM
(
   STAND_CN,
   STAND_ID,
   PLOT_CN,
   PLOT_ID,
   STANDPLOT_CN,
   STANDPLOT_ID,
   TREE_CN,
   TREE_ID,
   TAG_ID,
   SITE_TREE_FLAG,
   TREE_COUNT,
   HISTORY,
   SPECIES,
   DIAMETER,
   DIAMETER_HT,
   DG,
   HT,
   HTG,
   HTTOPK,
   HT_TO_LIVE_CROWN,
   CRCLASS,
   CRRATIO,
   DAMAGE1,
   SEVERITY1,
   DAMAGE2,
   SEVERITY2,
   DAMAGE3,
   SEVERITY3,
   DEFECT_CUBIC,
   DEFECT_BOARD,
   TREEVALUE,
   PRESCRIPTION,
   AGE,
   SLOPE,
   ASPECT,
   PV_CODE,
   PV_REF_CODE,
   TOPOCODE,
   SITEPREP
)
AS
   SELECT DISTINCT
          s.cn stand_cn,
          s.setting_id stand_id,
          p.cn plot_cn,
          NRV_FVS_DB.To_Num (
             SUBSTR (p.level_2_id, GREATEST (-1 * LENGTH (p.level_2_id), -4)))
             plot_id,
          s.cn || '_' || LPAD (p.level_2_id, 4, '0') standplot_cn,
          s.setting_id || '_' || LPAD (p.level_2_id, 4, '0') standplot_id,
          t.cn tree_cn,
          NVL (t.unique_no, NRV_FVS_DB.To_Num (t.tag_id)) tree_id,
          t.tag_id tag_id,
          DECODE(t.site_tree_flag,  NULL, 0,  'Y', 1,  NULL) site_tree_flag,
         -- Check for sub-sampling, calculate stand level tpa equiv if sub-sampling, and       
         -- plot-level tpa equiv if no sub-sampling                                            
          DECODE(
             s.Has_Sub_Sampling,
             'Y',                                             /*If sub-samp */
                 ROUND (NRV_TREE.Stand_Equiv (t.cn, t.tpa_equiv, s.cn), 5),
             /*else not    */
             t.tpa_equiv)
             tree_count,
          NRV_FVS_DB.To_History (t.live_dead,
                                 t.recent_mortality_flag,
                                 t.tree_status,
                                 t.tree_class)
             history,
          t.species_symbol species,
          DECODE(t.diameter_method, 'C', NULL, NVL (t.diameter, 0.1))
             diameter,
          t.diameter_height diameter_ht,
         -- /* For GST trees only: artf21577 radial growth bug                                                         *
          -- *   If the setting has any prev dia measurements and a prev meas date, DG = fia previous diam measurement *
          -- *   Otherwise, DG = radial growth                                                                         */
         -- /* TO_NUMBER(DECODE(t.growth_sample_tree_flag, NULL, NULL
          --                ,DECODE(NRV_FVS_DB.get_dg_trans(p.setmeas_cn_of)
            --              ,0, t.radial_growth/10  -- Division by 10 to convert units from tenths to inches
            --              ,1, t2.diameter_previous
             --             ,NULL))) dg, */

          --TO_NUMBER(DECODE(NRV_FVS_DB.get_dg_trans(p.setmeas_cn_of),0, t.radial_growth/10,  -- Division by 10 to convert units from tenths to inches
          --                 1, t2.diameter_previous,NULL)) dg,  -- art24653

          DECODE(
             t.radial_growth_method,
             'C', NULL,
             TO_NUMBER (
                DECODE(NRV_FVS_DB.get_dg_trans (p.setmeas_cn_of),
                        0, t.radial_growth / 10, -- Division by 10 to convert units from tenths to inches
                        1, t2.diameter_previous,
                        NULL)))
             dg,                                                   -- art24653
          DECODE(t.height_method, 'C', NULL, t.height) ht,
          --DECODE(t.height_growth_method, 'C', NULL,
          --round(DECODE(t.growth_sample_tree_flag, NULL, NULL, t.height_growth),4)) htg,  -- artf7599 GST tree (dg and htg issue)
          DECODE(t.height_growth_method,
                  'C', NULL,
                  ROUND (t.height_growth, 4))
             htg,                                                  -- art24653
          DECODE(
             t.height_to_break_method,
             'C', NULL,
             NRV_FVS_DB.To_Height_Top_Kill (t.height_topkill,
                                            t.height_to_break))
             httopk,
          DECODE(t.crown_base_height_method, 'C', NULL, t.crown_base_height)
             ht_to_live_crown,
          t.crown_class crclass,
          DECODE(
             t.crown_ratio_method,
             'C', NULL,
             DECODE(
                NRV_FVS_DB.Only_1_Digit_CRs (s.cn),
                'Y',                                      /*all 1-digit CRs */
                    t.crown_ratio,
                /*1- and 2-digit CRs*/
                DECODE(GREATEST (NVL (t.crown_ratio, -1), 1),
                        LEAST (NVL (t.crown_ratio, -1), 9),      /*CR < 10  */
                                                           10,
                        /*CR >= 10 */
                        t.crown_ratio)))
             crratio,                            -- artf9733 crown ratio issue
          NRV_FVS_DB.Get_Damage (t.cn, 1) damage1,
          NRV_FVS_DB.Get_Severity (t.cn, 1) severity1,
          NRV_FVS_DB.Get_Damage (t.cn, 2) damage2,
          NRV_FVS_DB.Get_Severity (t.cn, 2) severity2,
          NRV_FVS_DB.Get_Damage (t.cn, 3) damage3,
          NRV_FVS_DB.Get_Severity (t.cn, 3) severity3,
          (  SELECT SUM (td.effect_severity)
               FROM nrv_tree_disturbances td
              WHERE t.cn = td.tremeas_cn AND td.effect_code = '014'
           GROUP BY td.tremeas_cn)
             defect_cubic,
          (  SELECT SUM (td.effect_severity)
               FROM nrv_tree_disturbances td
              WHERE t.cn = td.tremeas_cn AND td.effect_code = '013'
           GROUP BY td.tremeas_cn)
             defect_board,
          /* first check to see if the plot is nonstockable, otherwise assign tree value. */
          DECODE(
             NRV_FVS_DB.Is_Plot_Nonstockable (p.cn,
                                              s.region_proc,
                                              s.loader_version),
             'Y',                                             /*nonstockable*/
                 8,
             /* else */
             NRV_FVS_DB.To_Tree_Value (t.tree_class))
             treevalue,
          NRV_FVS_DB.To_Num (t.first_treatment_option) prescription,
          --t.age age,
          DECODE(t.age_method,  'DC', NULL,  'TC', NULL,  t.age) age,
          NVL (p.slope, c1.slope) slope,
          NRV_FVS_DB.To_Aspect_Zero (NVL (p.aspect, c1.aspect)) aspect,
          NVL (p.pv_code, c1.pv_code) pv_code,
          NVL (p.pv_ref_code, c1.pv_ref_code) pv_ref_code,
          NRV_FVS_DB.To_Topo_Code (p.slope_position) topocode,
          DECODE(c1.cn,
                  NULL,                                /*no condition record*/
                       NRV_FVS_DB.get_plot_siteprep (p.cn),
                  /*else               */
                  NRV_FVS_DB.get_condition_siteprep (s.cn, c1.cn))
             siteprep
     FROM nrv_tree_measurements t,
          nrv_fia_tree_measurements t2,
          nrv_setting_measurements p,
          /* sub-select to improve efficiency - to unravel sub-sampling only once per stand-level. */
          (SELECT cn,
                  setting_id,
                  region_proc,
                  loader_version,
                  NRV_FVS_DB.Has_Sub_Sampling (cn) has_sub_sampling
             FROM nrv_setting_measurements
            WHERE setmeas_cn_of IS NULL) s,
          /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
          nrv_fia_mapped_conditions c1
    WHERE     t.setmeas_cn = p.cn
          AND p.setmeas_cn_of = s.cn
          AND t.cn = t2.tremeas_cn(+)
          AND t.mapcond_cn = c1.cn(+)
          AND t.off_plot_flag IS NULL
          AND (t.tree_status IS NULL OR t.tree_status IN ('D', 'L'))
          AND (   t.tree_class IS NULL
               OR t.tree_class IN
                     ('AC',
                      'DE',
                      'GS',
                      'RF',
                      'RN',
                      'S',
                      'SV',
                      'UA',
                      'US',
                      'WS',
                      'H',
                      'U',
                      'D'))
          AND t.down_flag IS NULL;

COMMENT ON TABLE FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM IS 'Provides FVS tree-level information from derived from various FSVeg data tables.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.STAND_CN IS 'Database control number for parent setting record.  This provides a foreign key to NRV_FVS_STANDINIT_VM.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.STAND_ID IS 'Stand Identification Code.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PLOT_CN IS 'Database control number for child setting record.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PLOT_ID IS 'Plot Identification number.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_CN IS 'Database control number for individual trees.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_ID IS 'Tree Identification Code - unique number.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREE_COUNT IS 'Tree Count rounded to 5 decimal places.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HISTORY IS 'History Code. 1=live trees, 6=died during mortality observation, 8=died before mortality observation period';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SPECIES IS 'Tree Species Code.  NRCS plants code.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DIAMETER IS 'Tree Diameter measurement in inches.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DIAMETER_HT IS 'Height in feet above ground where the diameter was measured.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DG IS 'Diameter Growth in inches.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HT IS 'Tree Height measurement in feet.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HTG IS 'Height Growth in feet.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.HTTOPK IS 'Height to top kill is the height to the point of the tree of top kill in feet';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.CRRATIO IS 'Percent live crown.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE1 IS 'Damage Code #1';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY1 IS 'Severity Code corresponding to damage code #1';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE2 IS 'Damage Code #2';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY2 IS 'Severity Code corresponding to damage code #2';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.DAMAGE3 IS 'Damage Code #3';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SEVERITY3 IS 'Severity Code corresponding to damage code #3';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TREEVALUE IS 'Tree Value Class Code. 1=desirable, 2=acceptable, 3=cull, 8=non-stock-able plot.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PRESCRIPTION IS 'Prescription Code.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SLOPE IS 'Slope Percentage of level-2 setting (plot) or FIA condition class.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.ASPECT IS 'Aspect in degrees of level-2 setting (plot) or FIA condition class.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PV_CODE IS 'Potential Vegetation Code of level-2 setting (plot) or FIA condition class.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.PV_REF_CODE IS 'Potential Vegetation Reference Code -- the document from which the PV_CODE was obtained.';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.TOPOCODE IS 'Topography Code of level-2 setting (plot) 1=bottom, 2=lower, 3=mid slope, 4=upper slope, and 5=ridge top';

COMMENT ON COLUMN FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM.SITEPREP IS 'Site Preparation Code of level-2 setting or FIA condition class. 1=none, 2=mechanical, 3=burn, 4=road';



DROP PUBLIC SYNONYM NRV_FVS_TREEINIT_VM;

CREATE OR REPLACE PUBLIC SYNONYM NRV_FVS_TREEINIT_VM FOR FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM;


GRANT SELECT ON FS_NRIS_FSVEG.NRV_FVS_TREEINIT_VM TO PUBLIC WITH GRANT OPTION;
ERROR:
SQL> @nrv_fvs_treeinit_vm.sql
SP2-0042: unknown command "DECODE(" - rest of line ignored.
SP2-0734: unknown command beginning "t.radial_g..." - rest of line ignored.
SP2-0042: unknown command "'C', NULL," - rest of line ignored.
SP2-0734: unknown command beginning "TO_NUMBER ..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "DECODE(NRV..." - rest of line ignored.
SP2-0734: unknown command beginning "0, t.radia..." - rest of line ignored.
SP2-0734: unknown command beginning "1, t2.diam..." - rest of line ignored.
SP2-0042: unknown command "NULL)))" - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "dg,             ..." - rest of line ignored.
SP2-0734: unknown command beginning "DECODE(t.h..." - rest of line ignored.
SP2-0734: unknown command beginning "DECODE(t.h..." - rest of line ignored.
SP2-0042: unknown command "'C', NULL," - rest of line ignored.
SP2-0734: unknown command beginning "ROUND (t.h..." - rest of line ignored.
SP2-0734: unknown command beginning "htg,      ..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0042: unknown command "DECODE(" - rest of line ignored.
SP2-0734: unknown command beginning "t.height_t..." - rest of line ignored.
SP2-0042: unknown command "'C', NULL," - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "t.height_t..." - rest of line ignored.
SP2-0042: unknown command "httopk," - rest of line ignored.
SP2-0734: unknown command beginning "DECODE(t.c..." - rest of line ignored.
SP2-0734: unknown command beginning "ht_to_live..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "t.crown_cl..." - rest of line ignored.
SP2-0042: unknown command "DECODE(" - rest of line ignored.
SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
SP2-0042: unknown command "'C', NULL," - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0042: unknown command "DECODE(" - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0734: unknown command beginning "'Y',      ..." - rest of line ignored.
SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "DECODE(GRE..." - rest of line ignored.
SP2-0734: unknown command beginning "LEAST (NVL..." - rest of line ignored.
SP2-0042: unknown command "10," - rest of line ignored.
SP2-0734: unknown command beginning "t.crown_ra..." - rest of line ignored.
SP2-0734: unknown command beginning "crratio,  ..." - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0734: unknown command beginning "NRV_FVS_DB..." - rest of line ignored.
SP2-0044: For a list of known commands enter HELP
and to leave enter EXIT.
             defect_cubic,
                   *
ERROR at line 5:
ORA-00933: SQL command not properly ended



Comment created.
(all the other reviews and more commands succeed.)

So what could be causing it to crashin SQL/PLUS via PUTTY? It makes no sense to me.
I also ran it through code formatter, because this will often show the ugly face of something that is hidden. But no luck.

But just info... is... contradictory information by the Oracle PL/SQL programming manual that (I've just came across this the other day, is the only reason I remember it) clearly states that he cares for white space.

It is not on the space characters in PL/SQL, but how SQL * Plus manages blank lines by default.

Are you sure you have deleted all empty lines? I see at least two.
Have you tried the suggested option? The error you have is very typical of this situation.

Tags: Database

Similar Questions

  • T500 GMA DVI Boot - Advanced Mini Dock: works with a monitor, but not another

    Hello

    I have a type of T500 2242 with GMA X4500MHD graphics in Advanced Mini Dock. BIOS 1.20, startup display set to the DVI connector. Cable DVI - D single-link of the dock-> DVI - D input on external TFT monitor. I get different results according to the attached monitor:

    (1) PX191 19 "1280 x 1024 native plane: splash screen appears on the external monitor.

    (2) "Topaz" Soyo DYLM24D6 24 "native 1920 x 1200 S: external monitor stays off, the splash screen appears on the screen of T500.

    I also have a T42 with Mini DVI - D Dock, -- this one shows the start screen on the 24 "monitor without problem, using the same cable dvi - d single-link I tried with the T500.

    In the case that this can help, EDID info here is for the 24 "monitor, of log file xorg running Linux on the T42:

    (II) RADEON (0): EDID data from the display connector: DVI - D -.
    (II) RADEON (0): manufacturer: XXX model: 76th serial No.: 16843009
    (II) RADEON (0): year: 2007 week: 30
    (II) RADEON (0): EDID Version: 1.3
    (II) RADEON (0): Display Digital Input
    (II) RADEON (0): Max H-Image size [cm]: horiz. : 52 green. : 33
    (II) RADEON (0): Gamma: 2.20
    (II) RADEON (0): doctors of Podiatric Medicine capabilities: standby Suspend Off; Display/color RGB
    (II) RADEON (0): first timer detailed is the preferred mode
    (II) RADEON (0): redX: 0.640 redY: 0.340 greenX: 0,295 greenY: 0.610
    (II) RADEON (0): blueX: 0,145 blueY: 0.070 whiteX: 0.313 whiteY: 0.329
    (II) RADEON (0): VESA graphics Modes supported:
    (II) RADEON (0): 640x480@60Hz
    (II) RADEON (0): 800x600@60Hz
    (II) RADEON (0): 1024x768@60Hz
    (II) RADEON (0): mask of the manufacturer: 0
    (II) RADEON (0): future video Modes supported:
    (II) RADEON (0): #0: hsize: 1280 1024 refreshment vsize: 60 vid: 32897
    (II) RADEON (0): #1: hsize: 1920 vsize 1200 refresh: 60 vid: 209
    (II) RADEON (0): #2: hsize: 1152 vsize 864 refresh: 60 vid: 16497
    (II) RADEON (0): #3: hsize: 1280 720 refreshment vsize: 60 vid: 49281
    (II) RADEON (0): #4: hsize: 1680 1050 refreshment vsize: 60 vid: 179
    (II) RADEON (0): #5: hsize: 1360 vsize 765 refresh: 60 vid: 49291
    (II) RADEON (0): #6: hsize: 1440 vsize 900 refresh: 60 vid: 149
    (II) RADEON (0): #7: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    (II) RADEON (0): Mode supported additional video:
    (II) RADEON (0): clock: 154.0 MHz Image size: 519 x 324 mm
    (II) RADEON (0): h_active: h_sync 1920: 1968 2000 2080 h_border h_blank_end h_sync_end: 0
    (II) RADEON (0): v_active: 1200 v_sync: 1203 1209 v_blanking v_sync_end: 1235 v_border: 0
    (II) RADEON (0): serial number: U7301D2180063
    (II) RADEON (0): ranges: V min: 56 V max: 61 Hz, H min: max 30 H: 83 kHz, PixClock 154 MHz max
    (II) RADEON (0): name of the monitor: M24EI5
    (II) RADEON (0): EDID (in hexadecimal):
    (II) RADEON (0): 00ffffffffffff0063186e0701010101
    (II) RADEON (0): 1e11010380342178eac905a3574b9c25
    (II) RADEON (0): 1250542108008180d100714081c0b300
    (II) RADEON (0): 8bc09500a940283c80a070b023403020
    (II) RADEON (0): 360007442100001e000000ff00553733
    (II) RADEON (0): 30314432313830303633000000fd0038
    (II) RADEON (0): 3d1e530e000a202020202020000000fc
    (II) RADEON (0): 004d32344549350a20202020202000e0
    (II) RADEON (0): DVI-0 output activated by the configuration file
    in RADEONProbeOutputModes
    (II) RADEON (0): I2C device "DVI_DDC:ddc2" recorded at address 0xA0.
    (WW) EDID favorite synchronization clock 154.00 MHz exceeds claimed max 140 MHz, setting

    Maybe there is something wrong with the Soyo is EDID? Or a bad interaction with the T500 BIOS?

    I would be grateful for clues on how to get the start screen to display on the monitor 24 ".

    Thank you

    Frank

    Good news! I sent my T500 in-service, and Lenovo replaced the motherboard. Now, the startup screen is correctly displayed via the dock to my monitor's DVI port external 24 ". After what Linux / X sees the external monitor and it puts in place and it displays correctly. So: problem solved! Thanks, Lenovo

    Before the swap of the Board of Directors system, I was able to use a cable DVI DisplayPort / talk to the 24 "monitor. This requires an extra cable to plug/unplug, so it's nice to finally have the DVI dock work.

    It seems that this problem only arises with some ThinkPad + external monitor combinations. My original system card worked fine with a 19 "monitor. And another Member pointed out that a single version of a 19 "works fine with its T500 Belinea monitor, even if a previous version does not. (See this thread for more details.)

  • RAM has worked in a T30 but not another

    I have 2 sticks of 1 GB of RAM: DDR 333, FDMHGO - 04032T

    This RAM worked well in a portable T30 2366-85U

    I put the same RAM in a laptop of 2366-KU1 T30 and it does not - in a memory slot. The BIOS is 1IET71WW (2.10) 16/06/2006, which I think is the latest BIOS for this laptop. 2366-85U cell phone no longer works, I dropped something on the keyboard and who killed the laptop, so I can't check for the version of the BIOS.

    Is there something I can do to get two sticks of 1 GB of RAM in the laptop 2366-KU1?

    You are not sure if the RAM may be damaged, but could it have been damaged when the other laptop is dead?

    The contacts on the RAM were dirty. I cleaned the with an eraser and the T30 see now the 2 GB of RAM.

  • Look at a web page in IE works from a server, but not another

    our intranet is running in display IE 11 compatibility mode. On both servers, the web page solves that correctly and to our production server there are some spacing problems. The two configuration of web servers are set up exactly the same as all the dreamweaver templates, graphics and css code. No matter what I try the text on the production server gets cut off in one place.  In dreamweaver, spacing looks fine in all cases, until you view it on the production server.

    3.png2.png

    The code for this part of the model

    < table width = "100%" border = "0" cellspacing = "0" cellpadding = "0" >

    < b >

    "" < td width = "31%" > < p > < img src = "... / imgs/2010_homepage/label_internal.jpg" alt = "Internal News more" width = "156" height = "24" / > < / p > < table >

    "" < td width = "5%" rowspan = "2" > < img src = "... / imgs/2010_global/10x10_spacer.png" width = "29" height = "10" / > < table >

    "" < td width = "29" > < img src = "... / imgs/2010_homepage/label_external.jpg" alt = "more external news" width = "158" height = "24" / > < table >

    "" < td width = "5%" rowspan = "2" > < img src = "... / imgs/2010_global/10x10_spacer.png" width = "29" height = "10" / > < table >

    "" < td width = "30%" > < img src = "... / imgs/2010_homepage/label_projects.jpg" alt = "Featured projects" width = "139" height = "24" / > < table >

    < /tr >

    < b >

    < td align = "left" valign = "top" > < ul id = "internal_links" >

    < li > < /li >

    < /ul >

    < ul id = "internal_links" >

    "< li > < a href ="... / corp/internal/classifieds/index.html "> Classifieds < /a > < /li >"

    "< li > < a href ="... / corp/internal/contest_zone/index.html "> Contest Zone < /a > < /li >"

    "< li > < a href ="... / corp/internal/gallery.html "> Gallery < /a > < /li >"

    "< li > < a href ="... / corp/internal/jetplane/index.html "> leaving on a JetPlane < /a > < /li >"

    "< li > < a href ="... / corp/internal/move/index.html "> On the Move < /a > < /li >"

    "< li > < a href ="... / corp/internal/welcome_mat/index.html "> rugs home < /a > < /li >"

    < /ul >

    < table >

    < td align = "left" valign = "top" > < ul id = "external_links" > < li > < /li >

    < /ul >

    < ul id = "external_links" >

    " < li > < a href =" http://www.links/ "> SaskTel News < /a > < /li > .

    "< li > < a href ="... / corp/external/cbc/index.html "> SRC news < /a > < /li >"

    < /ul >

    < table >

    < td align = "left" valign = "top" > < ul id = "external_links" > < li > < /li >

    < /ul >

    <!-TemplateBeginEditable name = "Featured projects"->

    < ul id = "external_links" >

    Wireless network < li > 3 + < /li >

    Management of the < /li > < li > improved productivity and cost

    Job < /li > < li > Simplification

    < /ul >

    <!-TemplateEndEditable--> < table >

    < /tr >

    < / table > < table >

    I tried telling them that, but it falls on deaf ears. Laughing out loud

    Thanks for your help!

  • Get-XmlNode syntax works in a script but not another.

    Hello.

    I extracted a highly respected two gurus PowerCLI script, mm. Alan Renouf & LucD.

    I use PowerGUI environment and find a script completes successfully, and we didn't. They perform different tasks, but I am curious to understand the syntax error I get.

    Both contain the 4 lines:

    function {Get-XmlNode

    Param ($path)

    $global: vInventory.SelectNodes ($path)

    }

    In my 1st script, I get the error "method call failed because http://System.String does not contain a method name"SelectNodes"."

    The same lines in my 2nd script complete successfully. I used the debugging capability to trace the message and the shutdown script too.

    Scenario 1, export vCenter ready authorizations for the import script: of Alan Renouf

    Text 2, vProfile dump of your hosts, machines virtual etc.: LucD (the $entity variable should reflect a valid group name)

    It seems to me the message is trying to say "I have no knowledge of the parameter you provided.

    I have attached two scripts if someone has a moment to consider.

    Thank you very much

    Darren.

    (@dawoo)

    The reaason you encounter this problem with script 1 is because $global: vInventory does not contain an XML document, but a string.

    And the SelectNodes method does not know on a string.

    Attached a corrected version of the text 1.

    The fundamental problem was this line

    $global:vInventory = ""
    

    who should actually be

    $global:vInventory = [xml]""
    

    Note how the string is "cast" in an XML document!

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Why disable Flash Player addon allow videos work on one site but not another?

    I am running Firefox 37.02, Windows 7. I also have flash shockwave V17.0.0.134 & V18.0.0.95 addons. The V18 version is beta and downloaded from Adobe to try to resolve this ongoing problem. He has not solved it. By trial and error, I have established that when I disable the addons above mentioned (notice, disabling seems to disable the other) I am able to get videos from Web site to play (for example: video on golfchannel.com) but not another (example: www.nbcphiladelphia.com). Conversely, if the addons are enabled, the videos on the site www.nbcphiladelphia.com work but those of the golfchannel.com are not. By 'not' I mean that commercial video games earlier but the video of the main object that is to run thereafter is not. I get a black screen and the commercial video recycled again and again. I contacted the golfchannel.com support group who said that they were not aware of all the problems. They suggested that I use the Chrome browser, which is what they use without problem.

    It's weird. You can try using the Firefox Add-on FlashBlock to disable flash on some websites but not others: https://addons.mozilla.org/En-us/firefox/addon/flashblock/

  • OfficeJet 6600. Works as a printer, but not able to start the scanner.

    OfficeJet 6600. Works as a printer, but not able to start the scanner.

    I am facing a strange behaviour of my camera. I tried to find similar problems on the forum, but did not succeed.

    I started it 2 days (near my 5610 old which seems to have problems of aging). I use a Sony VAIO PC, OS Win7-Pro, updated.

    Running the appliance following the instructions of the poster. Presents the installation CD. Wireless net was successful and the screen of the device is to give the corresponding IP address.

    But this IP has realized the configuration SW is not recognized. I tried thousands of times, switching and on different devices (router, printer and pc) in the order required, uninstall and reinstall the device.

    However, despite the property intellectual not recognized the device functioning as a "printer".

    But I need to use it as a scanner.

    Procedure by selecting the "scan to PC" screen of the device (only available as an option) I get the message "to ensure that the feature is turned on" and I am prompted to 'open the printer HP SW,... '. ».

    Go to Windows and by clicking on "HP SCAN" in the HP/HP Officejet 6600 directory I get the a warning window stating "HP Officejet unidentified 6600.

    Can someone, please?

    Thank you in advance.

    Hey,.

    Try this document! A "no computer has detected" or "Connection error" message when scanning for HP Officejet 6600 e-all-in-one and 6700 Premium e-All-in-One Printer Series (H711)

    Have a great day!

  • Firefox crashes at startup for a single user, but not another

    Crash ID: bp-df3a48d7-363c-4d2f-87d3-f73902140723
    Version: 31
    Crashes at startup for a single user, but not another. Both are directors.
    I uninstalled and reinstalled. No change to each user.
    Crashes in safe mode as well (hold down the SHIFT key)
    No present addons in the other user.
    Ran Malwarebytes and cleaned
    Ran CCCleaner and clean up all registry including uninstalled Firefox entries.

    This is not useful if firefox crashes at startup. because you cannot start to create the new profile.

  • Firefox does not open, but is rather the error message "Unable to read the configuration file." He has worked in the past, but not now.

    Firefox does not open, but is rather the error message "Unable to read the configuration file." He has worked in the past, but not now.

    I REINSTALL 10 TIMES SO DON'T TELL ME THAT!
    I'm piss because I need firefox work again, so I can finish my reseaching in 5 days.


  • I changed my apple ID password. I restarted my computer and my iphone. My new password works with my laptop, but not my iphone.

    I changed my apple ID password. I restarted my laptop and my iphone. My new password works on my laptop but not on my iphone, I can't update my applications.

    iowaoma wrote:

    I changed my apple ID password. I restarted my laptop and my iphone. My new password works on my laptop but not on my iphone, I can't update my applications.

    Apps are tied to apple id and password that was used to download/purchase it.

    Try your old password and see if you can update or not.

  • Stand By worked in XP Home, but not XP Pro SP3 on the same machine

    Stand By worked in XP Home, but not XP Pro SP3 on the same machine.
    How can I get Stand By under XP Pro SP3?

    * title Moose - see http://stlcc.org/SYS/Standby.bmp for the issue.*

    Hi srfpala,

    I suggest that you manually download and install the latest drivers for the graphics card graphics card or computer manufacturer's website and check if it helps.

    How to manage devices in Windows XP

    http://support.Microsoft.com/kb/283658

    If fails it above step can refer to the article below and try the steps mentioned, check if it helps.

    How to solve the problems of hibernation and standby in Windows XP

    http://support.Microsoft.com/kb/907477

  • I installed the police of San Francisco system. his work in other applications, but not adobe, Ps and Pr

    I installed the police of San Francisco system. his work in other applications, but not adobe, Ps and Pr
    What... do not know any solution.

    Hello

    Please try to post your query in communities:

    General discussion of Photoshop

    Illustrator

    Premiere Pro

    Kind regards

    Sheena

  • Why the HDR toning work with some pictures, but not for others?  I have CS6.

    I have Photoshop CS6 and when I go to HDR toning, it is only highlighted for work with some photos, but not others, why?  Thank you.

    HDR toning does not work with CMYK images. Change the RGB color mode, and then you will be able to use HDR toning. It also works with the color to grayscale mode.

  • The data are stored in the DB for the Jdeveloper test, but not in the dev environment

    The data are stored in the DB for the Jdeveloper test, but not in the dev environment

    Hi all,

    IM new with OFA and Im working with Jdeveloper, I create a form to store information using a VO and EO and add information to the current line using the attribute set of function, I noticed that when I lunch the update in the jdevelopher data is OK in the comic book, but when I install the development in the DEV environment the data stored using java code does not the table, only data that are related by the object as text fields and others.

    This is the code that I use for SAP data, it works in jd, but not in the dev environment

    {} public void saveData (String responsabilidadID)
    int respId = Integer.parseInt (responsabilidadID);
    OAViewObject vo = (OAViewObject) getQuiebresComercialesVO1 ();

    vo.getCurrentRow () .setAttribute ("ResponsabilidadId", respId);

    getTransaction () .commit ();
    }

    Any there who encounter this type of problem, something I can check?

    Thank you all.

    Just check if you bounced the server after you deploy the code. Objects Java would not reflect the changes, unless the instance is bounced.

  • Why my AS3 code working in 1 project, but not in another?

    I had a small project by working with simple buttons that worked very well. I had to restore my project and now it does not work. Ive cut all new code that I added and it did not work. I made a completely new project and copied the layers I'm testing and just the code that had the first working draft and it did not work either. any suggestions on why this might happen?

    This can be a bit of a twist when it comes to understand because this is what I consider an anomaly of the Flash.  If you have different instances of the same object in the adjacent images, then the object the latter will inherit properties of the thing seized.  Sometimes it works to your advantage and sometimes it will leave scratching you your head trying to solve a problem.

    You have shown just in case, you have an object in the frame of 30 and I guess it is the same object that is in frame 1.  Based on what I just explained as an anomaly, even if you were to remove the name of the instance of the object in the frame of 30, or call it something else, it will persist with the name of the instance assigned to it in box 1.  Try it and see - it should always work.

    However, if you interrupt (that ness adjacent) regarding placing a keyframe empty between frame 1 and 30, you will find that the button no longer works in the frame of 30.  He is most associated with the earlier proceedings.  To get back to work, you reassign Auditors properties.

Maybe you are looking for