BIOS-GPT grub cannot find the root device in LVM setup

Greetings Arch Linux Community,
Recently I started my journey of installing Arch Linux on my VMware Workstation.
I successfully installed the non-LVM instance not long before I noticed the advantages of LVM, then I just started a new Arch Linux setup with LVM.
However, after following the Beginners' Guide and LVM Guide carefully, I ran into a problem on boot that I cannot solve by myself due to my poor knowledge on boot/grub.
Here is the error message:
ERROR: device '4b28d500-8ed3-4fe5-ad26-97fbb01f979b' not found. Skipping fsck
ERROR: Unable to find root device '4b28d500-8ed3-4fe5-ad26-97fbb01f979b'
The error message itself is pretty clear; saying that the root device specified by my grub.cfg cannot be found and thus cannot be loaded.
However, I'm 100% sure that the device is actually there and just for some reason grub cannot see it.
Below please see the info from lsblk, pvdisplay, vgdisplay, lvdisplay, and some related info from fstab, grub.cfg and mkinitcpio.conf:
root@archiso / # lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
fd0
sda
├─sda1
├─sda2 swap a576bed1-929a-4ea5-b771-6b2e3b2e3808
├─sda3 ext4 659e5bcf-b34b-4083-b8e5-e336fdd20c3d /mnt/boot
└─sda4 LVM2_member GNznA5-fwUh-Gw6D-JvY4-rZKJ-d6fP-TIyoRZ
├─VolGroup00-lvroot ext4 4b28d500-8ed3-4fe5-ad26-97fbb01f979b /mnt
└─VolGroup00-lvhome ext4 dc1f1322-8d8e-4456-b61d-95966ae4e25d /mnt/home
sr0 iso9660 ARCH_201405 2014-05-01-05-20-54-00 /run/archiso/bootmnt
loop0 squashfs /run/archiso/sfs/root-image
loop1 ext4 f07bfb26-3377-487a-a022-efd840614a0d
└─arch_root-image ext4 f07bfb26-3377-487a-a022-efd840614a0d /
loop2 ext4 f07bfb26-3377-487a-a022-efd840614a0d
└─arch_root-image ext4 f07bfb26-3377-487a-a022-efd840614a0d /
root@archiso / # pvdisplay
--- Physical volume ---
PV Name /dev/sda4
VG Name VolGroup00
PV Size 8.50 GiB / not usable 2.98 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 2175
Free PE 0
Allocated PE 2175
PV UUID GNznA5-fwUh-Gw6D-JvY4-rZKJ-d6fP-TIyoRZ
root@archiso / # vgdisplay
--- Volume group ---
VG Name VolGroup00
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 3
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 2
Open LV 2
Max PV 0
Cur PV 1
Act PV 1
VG Size 8.50 GiB
PE Size 4.00 MiB
Total PE 2175
Alloc PE / Size 2175 / 8.50 GiB
Free PE / Size 0 / 0
VG UUID x8VegQ-OKr6-kNNk-HwHe-xxi1-Ecdt-W9Ydj2
root@archiso / # lvdisplay
--- Logical volume ---
LV Path /dev/VolGroup00/lvroot
LV Name lvroot
VG Name VolGroup00
LV UUID q8LxrZ-PXmf-K2Sl-7SNl-DlsF-IZ3s-2m2eHw
LV Write Access read/write
LV Creation host, time archiso, 2014-05-17 16:24:23 +0000
LV Status available
# open 1
LV Size 5.00 GiB
Current LE 1280
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:1
--- Logical volume ---
LV Path /dev/VolGroup00/lvhome
LV Name lvhome
VG Name VolGroup00
LV UUID 3q32Nf-CRZz-iYpB-5317-075y-ulj3-uurdwE
LV Write Access read/write
LV Creation host, time archiso, 2014-05-17 16:24:49 +0000
LV Status available
# open 1
LV Size 3.50 GiB
Current LE 895
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:2
root@archiso / # cat /mnt/etc/fstab
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/mapper/VolGroup00-lvroot
UUID=4b28d500-8ed3-4fe5-ad26-97fbb01f979b / ext4 rw,relatime,data=ordered 0 1
# /dev/mapper/VolGroup00-lvhome
UUID=dc1f1322-8d8e-4456-b61d-95966ae4e25d /home ext4 rw,relatime,data=ordered 0 2
# /dev/sda3
UUID=659e5bcf-b34b-4083-b8e5-e336fdd20c3d /boot ext4 rw,relatime,data=ordered 0 2
# /dev/sda2
UUID=a576bed1-929a-4ea5-b771-6b2e3b2e3808 none swap defaults 0 0
root@archiso / # cat /mnt/boot/grub/grub.cfg | grep "root"
set root='lvmid/x8VegQ-OKr6-kNNk-HwHe-xxi1-Ecdt-W9Ydj2/q8LxrZ-PXmf-K2Sl-7SNl-DlsF-IZ3s-2m2eHw'
search --no-floppy --fs-uuid --set=root --hint='lvmid/x8VegQ-OKr6-kNNk-HwHe-xxi1-Ecdt-W9Ydj2/q8LxrZ-PXmf-K2Sl-7SNl-DlsF-IZ3s-2m2eHw' 4b28d500-8ed3-4fe5-ad26-97fbb01f979b
search --no-floppy --fs-uuid --set=root 4b28d500-8ed3-4fe5-ad26-97fbb01f979b
set root='hd0,gpt3'
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
search --no-floppy --fs-uuid --set=root 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
linux /vmlinuz-linux root=UUID=4b28d500-8ed3-4fe5-ad26-97fbb01f979b rw quiet
set root='hd0,gpt3'
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
search --no-floppy --fs-uuid --set=root 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
linux /vmlinuz-linux root=UUID=4b28d500-8ed3-4fe5-ad26-97fbb01f979b rw quiet
set root='hd0,gpt3'
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
search --no-floppy --fs-uuid --set=root 659e5bcf-b34b-4083-b8e5-e336fdd20c3d
linux /vmlinuz-linux root=UUID=4b28d500-8ed3-4fe5-ad26-97fbb01f979b rw quiet
root@archiso / # cat /mnt/etc/mkinitcpio.conf| grep "HOOKS"
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# HOOKS="base"
# HOOKS="base udev autodetect block filesystems"
# HOOKS="base udev block filesystems"
# HOOKS="base udev block mdadm encrypt filesystems"
# HOOKS="base udev block lvm2 filesystems"
HOOKS="base udev autodetect modconf block lvm2 filesystems keyboard fsck"
Last edited by garrio (2014-05-18 00:42:36)

Efka wrote:when i was installing Arch, i installed grub on /dev/sda and my sda (gpt )was - sda1 (ext4)for / and sda2(ext4) for /home so when grub is installed it is installed into SDA ( or im wrong? ) but not into sda1 or sda2,  but when i was doing my install i didnt made /boot ext4 partition (sda3   ext4 659e5bcf-b34b-4083-b8e5-e336fdd20c3d   /mnt/boot)  . i think u trying to mount grub into ext4 partition. is this right ? if yes... is it how it suposed to be ?
Sorry, im newbie ( dont take my advice seriously ), but im very curious about his, because once i couldnt install grub as well so i went for syslinux instead , and i know i will have one more fresh install of arch to do, so im curious
Hi Efka, I used grub-install and specified "/dev/sda" for argument. What I understand is that the sda is the identifier for the hard disk where all the sdaX reside. And if you look into the output of my lsblk, you will see that there is one partition sda1 that has no filetype, label and UUID on display; that is actually the bios boot partition where, as I understand, the grub code embeds itself.
We can have different partition scheme to deploy and having a separate partition for /boot is just my personal preference ans it should work as well.

Similar Messages

  • OrgChart - Cannot find the root of your orgchart

    Dear Experts,
    I have done the required configuration for my NAKISA 3.0 SP 01 Verison with CE 7.1.
    But when i am trying to acess the End user Link like http://ServerName:Port/OrgChart/default.jsp from the CE 7.1 Portal .
    First Screen it self it shows the this Erorr message.
    Cannot find the root of your orgchart. The orgchart box may have been deleted or incorrectly specified, or no valid org structure can be found for the selected effective date. Please change the root of the chart or select another effective date.
    I would like to try drilldown - i got this error information in my CDS.LOG file
    1846. 24 Feb 2012 16:55:56 ERROR com.nakisa.Logger - [NakisaHRConnector.NakisaRfcChart]: Error retrieving data - : I:/NAKISA/RFC_CHART:000 HRWPC_STRUC_GET_MULTIPLE_ROOTS(PATH_NOT_FOUND)
    1847. 24 Feb 2012 16:55:56 ERROR com.nakisa.Logger - BAPI_SAP_OTFProcessor_Chart : while trying to invoke the method com.nakisa.framework.data.DataTable.cloneShallow() of an object loaded from local variable 'p_dt_keyStructure'
    So Can you please help me on crack this issue.
    Reagrds
    Dileep P

    I recommend this thread:
    [http://forums.sdn.sap.com/thread.jspa?messageID=10995885#10995885]
    Issue Reason: Issue happened as there are no available evaluation paths defined by Nakisa.
    Solution: all the evaluation paths defined by Nakisa will be in the transport pkg provided by Nakisa. Import transport pkg to get the contents.
    Stephen

  • Cannot find the root of your orgchart. The orgchart box may have been delet

    Hi All
    I have searched to forum for similar issues, but none seem to apply to the errors I get in the CDS log.
    When try-ing to view the Orgchart, in the Orgchart Console I get the following message "Cannot find the root of your orgchart. The orgchart box may have been deleted or incorrectly specified."
    This is the entry in the CDS log.
    6/29/2010 9:26 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = PositionEmpHierarchy; : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    6/29/2010 9:26 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = PositionEmpHierarchy; : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    6/29/2010 9:26 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = PositionEmpHierarchy; : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    6/29/2010 9:26 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = PositionEmpHierarchy; : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    6/29/2010 9:26 AM:     ERROR: FieldsType : fieldName = 50000025; tableName = PositionEmpHierarchy; : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    6/29/2010 9:26 AM:     ERROR: CommandProcessor.getDataSet : select top 25 ObjectId,ShortText,LongText,ParentNo,ParentName,Relation,ObjectType,Pernr,EmpAbbr,EmpName,PositionParent,Subty,Prozt,Vacan,Status from PositionEmpHierarchy where (ObjectId=50000025) order by  Upper(ObjectId)  asc, Upper(Pernr)  asc, Upper(PositionParent)  asc|DC=DestinationConnection : Source {.Net SqlClient Data Provider}: Message {Invalid object name 'PositionEmpHierarchy'.}
    Any suggestions as to what I am missing ?

    Hi Spike,
    There could be a number of reasons why the PositionEmpHierarchy table has not been created. My advice is to run an extract and then run each line of your join statements in your DB. This will highlight where the problem lies.
    Good luck!
    Luke

  • Cannot find the root of your orgchart

    Hi,
    I have configured the Succession planning, Career planning, Manager and Talent Framework in Nakisa 3.1. When I log into below URL, it gives me the error "Cannot find the root of your orgchart". So far I followed the Admin guide for Succession planning.
    http://hostname:port/Manager/default.jsp.
    Cannot find the root of your orgchart. The orgchart box may have been deleted or incorrectly specified, or no valid org structure can be found for the selected effective date. Please change the root of the chart or select another effective date
    Log file:
    535. 25 May 2011 16:26:55 INFO com.nakisa.Logger - Invoking action:setorgchartdirectory [SAPMyIndirectReportsOrgChart, manager]. For processor OrgChartAppEventProcessor. Against controller OrgChartCtr
    536. 25 May 2011 16:26:55 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:0
    537. 25 May 2011 16:26:55 ERROR com.nakisa.Logger - com.nakisa.integration.sap.SAPConnector : HRMSS_GET_ORGSTRUCTURE_AS_XML : com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'ashost' is missing
    538. 25 May 2011 16:26:55 ERROR com.nakisa.Logger - com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'ashost' is missing
    539. 25 May 2011 16:26:55 ERROR com.nakisa.Logger - Bapi_Hroci.getDataSetBase() : java.lang.NullPointerException: while trying to invoke the method org.w3c.dom.Node.getNodeType() of an object loaded from local variable 'node'
    540. 25 May 2011 16:26:55 INFO com.nakisa.Logger - setorgchartdirectory on OrgChartAppEventProcessor took: 197ms
    541. 25 May 2011 16:26:56 INFO com.nakisa.Logger - Invoking action:refresh []. For processor FalconModuleControlAppProcessor. Against controller ModuleControlCtr
    542. 25 May 2011 16:26:56 INFO com.nakisa.Logger - refresh on FalconModuleControlAppProcessor took: 31ms
    Regards,
    Sagar

    Hi Sagar,
    Could you please check under data connection your connection string?
    It should be the SAP connection string.
    The format of the connection string:
    ASHOST=SAPONE SYSNR=02 USER=USERNAME PASSWD=welcome1 CLIENT=800
    SAPONE = SAP host name
    02 = system number
    USERNAME = username
    welcome1 = password
    800 = client number
    Also, maybe this is a permission issue, please double check that
    the user that you are accessing SAP with has the correct permissions.
    Give them SAP_ALL if nexessary to investigate.
    Hope this helps,
    kind Regards,
    Matthew

  • Cannot find the root of your orgchart. ORGCHART 3.0 LIVE

    Hello All,
    I know in the forum exists many threads about this. But no help to solve my issue.
    Let's...
    I can't see to view my orgchart because the follow message:
    Cannot find the root of your orgchart. The orgchart box may have been deleted or incorrectly specified, or no valid org structure can be found for the selected effective date. Please change the root of the chart or select another effective date.
    In the Log i have:
    10502. 27 May 2011 18:50:48 INFO com.nakisa.Logger - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 28ms
    10503. 27 May 2011 18:50:48 ERROR com.nakisa.Logger - com.nakisa.integration.sap.BuildingBlocks : null
    10504. 27 May 2011 18:50:48 ERROR com.nakisa.Logger - java.lang.NullPointerException
    10505. 27 May 2011 18:50:48 ERROR com.nakisa.Logger - Nakisa.SAP.SAPProcessor.BAPI_Hroci : null
    10506. 27 May 2011 18:50:48 ERROR com.nakisa.Logger - java.lang.NullPointerException
    10507. 27 May 2011 18:50:48 ERROR com.nakisa.Logger - com.nakisa.framework.data.paging.PageObject_Dynamic : executeSQL : java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    10508. 27 May 2011 18:50:48 WARN com.nakisa.Logger - ChartingProcessor : StartChart : Could not create nodes. Error message returned:Index: 0, Size: 0
    I don't no whats happened.
    Can anybody help-me?
    Thanks

    Thanks for reply.
    The original problem is solved.
    The Transport Package had not been done correctly.
    But the message continues.
    In the log i have:
    363. 31 May 2011 11:42:00 INFO com.nakisa.Logger - com.nakisa.troll.baseapp.Controller : : Controller.java, No value found for argument key: idLI
    364. 31 May 2011 11:42:00 INFO com.nakisa.Logger - Invoking action:setorgchartdirectory [SAPOrgUnitOrgChart, null]. For processor OrgChartAppEventProcessor. Against controller OrgChartCtr
    365. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:0
    366. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:0
    367. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 221ms
    368. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    369. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    370. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 90ms
    371. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    372. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    373. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 63ms
    374. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    375. 31 May 2011 11:42:00 INFO com.nakisa.Logger - FunctionRunner : ensurePool : Current pool size:1
    376. 31 May 2011 11:42:01 INFO com.nakisa.Logger - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 65ms
    377. 31 May 2011 11:42:01 WARN com.nakisa.Logger - ChartingProcessor : StartChart : Could not create nodes. Error message returned:For input string: "True"
    378. 31 May 2011 11:42:01 INFO com.nakisa.Logger - setorgchartdirectory on OrgChartAppEventProcessor took: 523ms
    Whats meaning this parrameter: iDli???
    Thanks for advance.

  • OrgChart error: Cannot find the root of your orgchart....

    Hi,
    I'm trying to install orgchart live.
    When I run OrgChart - I got following error: "Cannot find the root of your orgchart...."
    Well settings are following:
    a) data connection: ASHOST=xxxxxxxxxxxx  SYSNR=xx USER=xxxx PASSWD=xxxxxx CLIENT=xxx (this is OK)
    b) General settings: 50000051 (for OrgChartRot - which is OK)
    If i check CDS log I got following:
    ERROR: StructGenerator : processStructureRules : Chart Is Empty (ChartingStruct.RootNodes == null)
    Any idea?
    Thx,
    Damjan

    sure....
    <extrainfo>
            <item>
              <name><![CDATA[DLL]]></name>
              <value><![CDATA[Nakisa.SAP.SAPProcessor]]></value>
            </item>
            <item>
              <name><![CDATA[CLASS]]></name>
              <value><![CDATA[Nakisa.SAP.SAPProcessor.BAPI_Hroci]]></value>
            </item>
            <item>
              <name><![CDATA[ParentViewId]]></name>
              <value><![CDATA[ZVWO2P]]></value>
            </item>
            <item>
              <name><![CDATA[ViewId]]></name>
              <value><![CDATA[ZVWO2O]]></value>
            </item>
            <item>
              <name><![CDATA[ObjectType]]></name>
              <value><![CDATA[O]]></value>
            </item>
            <item>
              <name><![CDATA[Depth]]></name>
              <value><![CDATA[3]]></value>
            </item>
            <item>
              <name><![CDATA[PlanVersion]]></name>
              <value><![CDATA[01]]></value>
            </item>
            <item>
              <name><![CDATA[BapiName]]></name>
              <value><![CDATA[Hcm_Get_Orgstructure_As_Xml]]></value>
            </item>
            <item>
              <name><![CDATA[AddChildrenFlag]]></name>
              <value><![CDATA[True]]></value>
            </item>
            <item>
              <name><![CDATA[mail]]></name>
              <value><![CDATA[]]></value>
            </item>
          </extrainfo>
    do you see something here...
    Any idea from here on...what should I do?
    Edited by: Damjan Drnovsek on Apr 21, 2010 3:54 PM

  • NAKISA Cannot find the root of your orgchart

    Dear All,
    Iu2019m triyng to built our Org Chart in Nakisa. Everything seems to be ok but when I try to see the published org chart the system show me this error: Cannot find the root of your orgchart.
    And the CDS.log said:
    12/23/2010 12:38 PM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    12/23/2010 12:38 PM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    12/23/2010 12:38 PM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    12/23/2010 12:38 PM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    12/23/2010 12:38 PM:     ERROR: CommandProcessor.getDataSet : select top 25 ObjectId,ShortText,LongText,ParentNo,ParentName,Relation,ObjectType,NumSharedPosition from Scenario where (ObjectId=50000075) order by  Upper(ObjectId)  asc, Upper(ShortText)  asc, Upper(LongText)  asc, Upper(ParentNo)  asc|DC=DestinationConnection : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.
    Any idea?
    Thanks in advance
    Laura

    Hello, back again after Christmas holyweek! Happy New Year for everybody!
    Following your tips, i've check my DB connection. I've selected all the flags (Extract data from SAP, Execute joins on extracted data and Generate Analytics)
    Everything is ok unless generate Analytics, which is sending me this an error:
    Generating Analytic: Direct Head Count ...
    Failed.
    Generating Analytic: Indirect Head Count ...
    Failed.
    Generating Analytic: Direct Vacant Position Count ...
    Failed.
    Generating Analytic: Indirect Vacant Position Count ...
    Failed.
    Generating Analytic: Direct Open Position Count ...
    Failed.
    Generating Analytic: Indirect Open Position Count ...
    Failed.
    Generating Analytic: Indirect Chief Position Count ...
    Failed.
    Generating Analytic: Indirect Shared Positions Count ...
    Failed.
    Generating Analytic: Direct Employee FTE Count ...
    Failed.
    Generating Analytic: Indirect Employee FTE Count ...
    Failed.
    Processing Completed.
    And talking about the CDS log for just the action of opening the OrgChart:
    1/3/2011 9:24 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    1/3/2011 9:24 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    1/3/2011 9:24 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    1/3/2011 9:24 AM:     ERROR: FieldsType : fieldName = ObjectId; tableName = Scenario; : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.}
    1/3/2011 9:24 AM:     ERROR: CommandProcessor.getDataSet : select top 25 ObjectId,ShortText,LongText,ParentNo,ParentName,Relation,ObjectType,NumSharedPosition from Scenario where (ObjectId=50000075) order by  Upper(ObjectId)  asc, Upper(ShortText)  asc, Upper(LongText)  asc, Upper(ParentNo)  asc|DC=DestinationConnection : Source {.Net SqlClient Data Provider}: Message {Invalid column name 'ObjectId'.
    Invalid column name 'ObjectId'.
    Invalid column name 'ShortText'.
    Invalid column name 'LongText'.
    Invalid column name 'ParentNo'.
    Invalid column name 'ParentName'.
    Invalid column name 'Relation'.
    Invalid column name 'ObjectType'.
    Invalid column name 'NumSharedPosition'.
    Invalid column name 'ObjectId'.
    Invalid column name 'ShortText'.
    Invalid column name 'LongText'.
    Invalid column name 'ParentNo'.}
    Let's see if SAP can help me!
    Many thanks,
    Laura

  • [solved] Unable to find the root device after an upgrade - diff. case

    Background: I recently upgraded my installation done in August 2011 to the most recent packages with 'pacman -Syu' - which, amongst some other minor issues that I fixed,  apparently broke my installation's boot sequence. Not sure if this is relevant, but I forced the upgrade as it's been prescribed here.
    Note to self: do backups before any major upgrades like this.
    Problem: The problem is of the same origin as seen in this post - systems lets me know it cant access the root partition anymore. I'm halfway through the procedure that pineapple-biku suggested but since my partition layout is different - and - because I don't have much understanding of what *exactly* I'm supposed to do and accomplish, I'm stuck for now.
    What is the best way to find out the exact labels of encrypted volumes and their corresponding kernel device IDs (i.e. /dev/sda6 for 'tmp' and so on)? I have several volumes of the same size, thus it's hard to guess which is which without knowing for sure.
    Details: My setup has an unencrypted '/boot' partition and 7 other encrypted partitions, including /root, /usr and others. These are contained within a single extended partition.
    Any help will be greatly appreciated. In case I've left out some important information, let me know, and I'll do my best to provide it.
    Last edited by Raija (2012-02-28 03:06:25)

    Thank you both for your assistance. Some more understanding was exactly what I was in need of.
    falconindy wrote:The news item you posted says to force the installation of a single package, not the entire upgrade. These two things are not equivalent.
    Thanks for pointing that out. I'm still a newbie when it comes to Pacman, thus prone to such mistakes.
    Gcool wrote:
    Raija wrote:What is the best way to find out the exact labels of encrypted volumes and their corresponding kernel device IDs (i.e. /dev/sda6 for 'tmp' and so on)? I have several volumes of the same size, thus it's hard to guess which is which without knowing for sure.
    # ls -lah /dev/disk/by-label
    # ls -lah /dev/disk/by-id
    # ls -lah /dev/disk/by-uuid
    This should get you on the way on discovering which disk is what exactly (you'll need to know the / and /boot partition in order to fix the issue).
    Thank you. I'll try that.

  • ASM cannot find the raw devices nor ASM drives

    Hi,
    We are trying to use ASM on linux. The kernel version is
    2.6.9-42.0.10.0.1.ELsmp x86_64.
    We tried both raw devices and ASM drives. But after all the tries, the installer simply will not list the disks.
    Anybody can help? Thanks.

    "I had installed ASM initially on the same CRS, but due to some error during the installation"
    This statement means: I had installed ASM on the clusterware, but due to time synchronization error, it didn't got copied on to the 2nd node, and hence I had to uninstall the ASM software.
    But the clusterware is still up and running.
    Amit.

  • Massive problems but I cannot find the root cause.

     recently was experiencing some critical errrors in Windows XP Pro on my newly configured system which consists of an Athlon 2000+. MSI KT3 Ultra2 , 512 pc2700 by Micron, MSI ti4200 , 350watt Antec PS.
    At first I thought it was a PS problem so I pulled out the one that was in it and put in the Antec 350watt PSU, it crashed a few times and I got
    a few "memory Dump" critical errors so then I ran Windows XP check disk as well as Western Digital's disk checking tools (BTW its an 80gb SE) neither one found a problem..
    .....then I began to think that maybe my OC 1700+ was the problem so I pulled it out and installed a 2000+ and ran it at stock 133fsb...the problem was still there.
    Next I ran memtest for 12 hours straight....no errors.
    Finally I resorted to reinstalling to OS, I reformatted the drive and did so....right after the format I got a BSOD, then I got THIS.
    I give up.....what else could be going on?

    Well ram does make a lot of difference, especial DDR, they are hard.....
    Not all ram works fine on all boards.....
    Like I said, I have tried a lot of Micron, none worked ok, never.....
    Allway's problems somewhere.....
    I like Samsung, Infineon or Hyunday....
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    No offense but you are way off that on that one...perhaps this is your experience but I can
    assure you that it was pure conincidence.
    That is like saying that Chevron 92 octane unleaded works better in a Buick then it does a Pontiac and
    Texaco 92 octane fuel works better in a Pontiac
    then it does a Buick.
    Ram is ram , my 2 sticks of Micron PC2700 run at with the ram timings cranked to gills and at 155mhz system
    fsb....the ram is good no matter what. If it  wont go
    that fast on the MSI then the board is to blame.
    Funny , even MSI claims the board was made for overclocking but make sure you components can handle it. ha ha , not today MSI!
    But then again, I never use any other then SPD settings and no High-performance-settings.....
    >>>>>>>>>>>>>>>>>>>>.
    Welp to each his own however even my pure reliability systems are overclocked hard for testing when I first
    get them set up because if they run well OCed then they
    are going to run wonderfully at stock speeds.
    Also, don't overclock untill you know where it goes wrong....
    >>>>>>>>>>>>>>>>>
    The problem is that the board is a pile of crap...perhaps mine is just a poor example though.

  • Setup cannot find the Geforce4 4200 device

    Hello,
    I've just bought a Geforce4 4200 128MB MSI card which replaced my old voodoo3 3000 card.
    The BIOS seem to be able to communicate with the card as the card name shows when I turn on the computer.
    The problem is when I try to run the CD's setup program , it says "cannot find the device in your system".
    When I tried to view PCI information in linux , it printed out the following:
    "bus 1 , device 0 , function 0
    VGA compatible controller: PCI device 10de:0254 (nVidia corporation) (rev 163)
    IRQ 11." , and some more infromation regarding memory addresses.
    I'm running win95 on Celeron III 600MHz.
    Is the above PCI information makes sense? Why cant the windows installation find my device?
    Thank you for your responses,
    Ishai

    remove any device from system that has something to do with v. card...and all "unknown devices", reboot and try again. if not install drivers manualy...may be will work  

  • I cannot find the sync options that has "add a device" on firefox, all I find is "syncronizing" under tools and when I click on it I get how to set up

    ''dupe of https://support.mozilla.org/en-US/questions/915557''
    I cannot find the "sync options" on my firefox desk top. I can only find "Syncronise now" under tools. I am trying to find "add device" where is it

    Sorry about that, it should work now: [http://support.mozilla.com/en-US/kb/How+to+sync+Firefox+settings+between+computers#browser=fx35 How to sync Firefox between computers]

  • SelectTransport: creating directory failed: Win32Exception: root of directory to create not found: The system cannot find the path specified. [0x00000003]

    USMT is failing with error 71 for all users in a specific office when backing up to a specific share:
    COMPUTERNAME\Guest, administrator: No, interactive: Yes, logged on: No, has profile: No
    DOMAIN\USERNAME, administrator: Yes, interactive: Yes, logged on: Yes, has profile: Yes
    COMPUTERNAME\Administrator, administrator: Yes, interactive: Yes, logged on: No, has profile: Yes
    2014-10-31 12:52:37, Status [0x000000] Activity: 'MIGACTIVITY_TRANSPORT_SELECTION'
    2014-10-31 12:52:37, Info [0x000000] Processing the settings store
    2014-10-31 12:52:37, Error [0x000000] SelectTransport: creating directory \\san.f.q.d.n\share$\username\BACKUP\USERNAME\USMT failed: Win32Exception: root of directory to create not found: The system cannot find the path specified. [0x00000003] class UnBCL::DirectoryInfo *__cdecl UnBCL::Directory::CreateDir(const class UnBCL::String *)[gle=0x00000005]
    2014-10-31 12:52:37, Info [0x000000] Failed.[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] A Windows Win32 API error occurred
    Windows error 3 description: The system cannot find the path specified.[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] Windows Error 3 description: The system cannot find the path specified.
    2014-10-31 12:52:37, Info [0x000000] USMT Completed at 2014/10/31:12:52:37.861[gle=0x00000091]
    2014-10-31 12:52:37, Info [0x000000] Entering MigShutdown method
    2014-10-31 12:52:37, Info [0x080000] COutOfProcPluginFactory::FreeSurrogateHost: Shutdown in progress.
    2014-10-31 12:52:37, Info [0x0803e5] Not unmapping HKLM\ELAM; it is not mapped
    2014-10-31 12:52:37, Info [0x0803e6] Removing mapping for HKLM
    2014-10-31 12:52:37, Info [0x0803e7] Successfully unmapped HKLM
    2014-10-31 12:52:37, Info [0x0803e6] Removing mapping for HKU
    2014-10-31 12:52:37, Info [0x0803e7] Successfully unmapped HKU
    2014-10-31 12:52:37, Info [0x080487] Destroying OS analysis service
    2014-10-31 12:52:37, Info [0x080488] Destroyed OS analysis service
    2014-10-31 12:52:37, Info [0x000000] Leaving MigShutdown method
    2014-10-31 12:52:37, Info [0x000000] ----------------------------------- USMT ERROR SUMMARY -----------------------------------
    2014-10-31 12:52:37, Info [0x000000] * USMT error code 71:
    2014-10-31 12:52:37, Info [0x000000] +-----------------------------------------------------------------------------------------
    2014-10-31 12:52:37, Info [0x000000] | A Windows Win32 API error occurred
    2014-10-31 12:52:37, Info [0x000000] | Windows error 3 description: The system cannot find the path specified.
    2014-10-31 12:52:37, Info [0x000000] +-----------------------------------------------------------------------------------------
    As the user in question, when I browse \\san.f.q.d.n\share$\username, the BACKUP directory exists, but there are no sub directories.
    I manually created the sub directories, USERNAME\USMT - so the full path now exists: \\san.f.q.d.n\share$\username\BACKUP\USERNAME\USMT
    I re-ran USMT but the process returned the same error.
    If I specify other shares not on san.f.q.d.n but on san1.f.q.d.n or server.f.q.d.n or even workstation.f.q.d.n, it works fine.
    Can someone provide guidance on how to troubleshoot this further?

    In Windows, setting the Environmental Variable sometimes DOES NOT WORK.
    The -Djava.io.tmpdir=C:\temp setting must be made in the server properties of the oc4j in order for it to work.
    Jae

  • HT5262 My first time backing up my iPhone 4. I cannot find the page on my computer that shows File Device Backup.  I need step-by-step

    My first time backing up my iPhone 4. I cannot find the iTunes page on my computer that shows File>Device>Backup.  I need step-by-step instructions, please!

    Hey Jilleemay,
    Thanks for the question. You may need to enable the iTunes menus for Windows:
    iTunes: Turning on iTunes menus in Windows 8 and 7
    http://support.apple.com/kb/HT5610
    To do so, press Control-B on your keyboard. You should then see the menubar at the top of iTunes (see image below). You can then access the File menu and backup your device.
    Thanks,
    Matt M.

  • HT4623 I have an iPhone 4S that i dont use anymore. It is locked with a password & i can't remember the password. i am wanting to let my child use this phone now but when i connect it to my computer it says that it cannot find the device driver. How can i

    I have an iPhone 4S that is locked with a password & cant remember password. when I connect to my computer it says that it cannot find the device driver. How can i fix this?

    Hello jlb1977,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    place the device in recovery mode and restore it to erase the device:
    Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to shut down.
    While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    Continue holding the Home button until you see the Connect to iTunes screen.
    iTunes will alert you that it has detected a device in recovery mode. Click OK, and then restore the device.
    Best of luck,
    Mario

Maybe you are looking for

  • Apple Mail not working with Gmail IMAP

    This is a slight re-working of a post of 27 March as I am being driven nuts having to use web mail. I have used Mail with gMail for years. Last week I was abroad and I could only use the web interface as when I logged in from my MacBook via Mail the

  • Oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: te

    oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html; charset=UTF-8 Cause: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html; charset=UTF-8 I am getting the above error message when i tes

  • Will games for the iPhone ever be able to play on the iTouch?

    I have some games I bought for my old iPod which don't work on my iTouch, but will the new iPhone games ever work on the Touch?

  • OS X version of IBooks

    I read in another posting that one of the iPad users was able to download an iBooks application to his computer but not to his iPad. Has Apple released a version of iBooks that will let you read iBooks stored in iTunes on a MacBook Pro or any host OS

  • CS 5.5 AE crash on launch, any ideas?

    When I launch AE on my Mac Pro (OS 10.5.8) I get the following error message. There are some other forum threads with a similar message, but seemingly no connection between them. For instance, I don't think the Mac even uses a "registry." Here is the