
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-14-2009 11:13 AM
Thanks in advance !
- Labels:
-
Report Center

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2009 10:45 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2009 11:45 AM
paprita wrote:
I need the same function but with the possibility of OU choose ... because I don't need "Software search" in digital dashboard, is it possible to have a query to put somewhere in order to have "Search by OU" instead of "Software search"?
This will be in the next version

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2009 10:15 AM
SELECT dbo.tblComputerSystemProduct.Vendor, dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblADComputers.OU, dbo.tblADComputers.Lastchanged
FROM dbo.tblADComputers INNER JOIN
dbo.tblComputers ON dbo.tblADComputers.Computername = dbo.tblComputers.Computername
WHERE (dbo.tblADComputers.OU = 'My OU')
So when I run this (of course I fill in the correct OU), I get the error :
The multi-part identifier "dbo.tblComputerSystemProduct.Vendor" could not be bound.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-17-2009 11:46 AM
Illuminator7532 wrote:
dbo.tblComputerSystemProduct.Vendor" could not be bound.
Could you post the outpout of "select * from tblcomputersystemproduct" please
(one or 2 lines is enough)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2009 10:16 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2009 05:02 PM
FROM dbo.tblADComputers INNER JOIN
dbo.tblComputers ON dbo.tblADComputers.Computername = dbo.tblComputers.Computername
WHERE (dbo.tblADComputers.OU = 'My OU')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2009 04:19 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2009 12:31 PM
The multi-part identifier "dbo.tblComputerSystemProduct.Vendor" could not be bound

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-16-2009 11:53 AM
