
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2009 05:22 PM
- Labels:
-
Archive

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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2009 10:57 AM
You can
1) apply the hotfix
2) change "select top 100 percent" to "select top 10000000" (a really large number)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2009 01:13 AM
Lansweeper wrote:
Edit: this might be the problem http://support.microsoft.com/kb/926292/
You can
1) apply the hotfix
2) change "select top 100 percent" to "select top 10000000" (a really large number)
I ended up changing the query to "select top 10000000" to resolve this issue. Thanks you for your help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2009 10:47 AM
Which version of SQL server / service pack are you using

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2009 05:21 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2009 09:50 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2009 07:44 PM
When you run in the report builder does it sort ok there?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2009 06:44 PM
Select Top 100 Percent tblComputersystem.Manufacturer, tblComputersystem.Model, tblBIOS.SMBIOSBIOSVersion, tblBIOS.SerialNumber, tblBIOS.Computername, tblBIOS.Lastchanged From tblADComputers Inner Join tblBIOS On tblBIOS.Computername = tblADComputers.Computername Inner Join tblComputersystem On tblADComputers.Computername = tblComputersystem.Computername Inner Join tblComputersystem tblComputersystem1 On tblComputersystem1.Computername = tblBIOS.Computername Order By tblComputersystem.Manufacturer, tblComputersystem.Model, tblBIOS.SMBIOSBIOSVersion Desc
I selected to sort ascending on the manufacturer, model, then descending on the BIOS version.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2009 06:05 PM
