Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. wooddsw

    Log Shipping Subscriber Recovery Mode

    I have a log shipping process running and the machine on which the subscriber is sync'ing is IO constrained. Is it possible to set Recovery Mode on the subscriber DB to SIMPLE? I know FULL is required on the publisher but is strikes me that when transactions are being applied to the subscriber...
  2. wooddsw

    Nested Inner Joins with SubSelects

    I would appreciate any suggestions on the following code and why I'm getting the following error message: Msg 8156, Level 16, State 1, Line 14 The column 'added_by' was specified multiple times for 'A'. Code select * from sfdc..contact C inner join ( select * from avenue2..activity G...
  3. wooddsw

    ShowContig - Internal vs External Fragmentation

    While running DBCC ShowContig on a SQL 2000 server I've discovered some strange outputs. DBCC SHOWCONTIG scanning 'ContactLog_Audit' table... Table: 'ContactLog_Audit' (1495676376); index ID: 0, database ID: 96 TABLE level scan performed. - Pages Scanned................................: 133627...
  4. wooddsw

    Prompting for Library at Logon

    I've basically taken the current production server image and installed it onto a test box using Symantec Server Recovery product. I changed the computer name and IP so it didn't conflict with the current production box. Installed a separate instance of SQL2000 on that server and used Sages...
  5. wooddsw

    Prompting for Library at Logon

    I'm currently in the process of decommissioning AccPac due to a merger. My current configuration is an application server which connects to our may SQL server that houses the databases. I'm attempting to install a local copy of SQL2000 on the app server and ultimately disconnect it from the...
  6. wooddsw

    Charting getpivotdata formula

    Just discovered my own solution.... When creating the Calculated Field, I just need to use the 2 fields from the data source, in this case Target and Distinct Call fields, in their own formula. ie. =Target/DistinctCall When these 2 fields are using in the aggregate calculation the summary of...
  7. wooddsw

    Charting getpivotdata formula

    I understand I can create a calculated field but I need to reference the summary cells within the PivotTable and they aren't available in the Fields listbox of data source columns to choose from. When I try and paste the following formula into the Insert Calculated Field and add it i get...
  8. wooddsw

    Charting getpivotdata formula

    I have a pivot table that resembles: Calls Targets January 100 25 February 50 10 March 25 5 etc I need to calculate a ratio from this pivot table which I can do in the cell adjacent to the Targets value and copy down all...
  9. wooddsw

    Error attempting to reinitialize a subreport Array

    Found out I can add this line to the end of the formula ' ' The formula will then return a blank character rather than the array. Crystal formulas return the last value they evaluate. In this case it is the array declaration and thus an array is being returned. I did have to change the...
  10. wooddsw

    Error attempting to reinitialize a subreport Array

    I have a Main/Sub report task that I'm trying to modify. The report is a sales call tracking report and the sub report gathers time off territory from the database which is used in calculating a calls per day average. This subreport fires from the main report header one time and collects...
  11. wooddsw

    FTP Service Floods the T1

    Just encountered a problem today with our FTP site exceeding our T1 bandwidth capacity and impacting all connectivity. When the FTP service is stopped processing goes back to normal. This FTP site is used for SalesLogix CRM and there are no files in any of the directories where staging of...
  12. wooddsw

    Datareport won’t print from a Scheduled Task

    I am using PrintReport. I did just this morning resolve it. Rather I should say stumbled on it. It appears it was the RunAs credentials as I suspected. I tried several different logons and then when back to my own logon and it started working. It worked only once so far so I'm going to...
  13. wooddsw

    Datareport won’t print from a Scheduled Task

    I have a VB 6.0 SP6 application that processes order files. It is setup to run either unattended as a scheduled task with a command line parameter or via a form interface. The appl generates a report at the end of the run via a Datareport designer. Now the bug… When I run the appl via the...
  14. wooddsw

    Catastrophic Error using a Parameter Stored Procedure as a Datasource

    I’ve developed the attached query that needed to perform a Union. Previously a view, this query now needed to incorporate a dynamic where clause as well as receive a ‘Product’ parameter. The conditional logic works properly when executed in ISQL. When attempting to use this SP as a datasource...
  15. wooddsw

    Select TOP 1 doesn't return the maximum date

    When looking at TOP 2 I was surprise to see that the result in TOP 1 (2004 date) wasn't the max date (2006 date). I really only want the TOP 1 result to be correct (2006 date)
  16. wooddsw

    Select TOP 1 doesn't return the maximum date

    Interesting....Adding DESC to the Order By clause returns 2 completely different records. However when changing the query to TOP 1 it did return what at this point appears to the the correct max date record. Any further explanation of the internal execution process of the TOP function will...
  17. wooddsw

    Select TOP 1 doesn't return the maximum date

    I'm working on returning the most recent history record for a specific contact. I tried the MAX(CompletedDate) to no avail so I thought I'd try the TOP 1 method. When I change it to TOP 2 notice that the second row is a more recent date than the first row. Changing the query to TOP 1 returns...
  18. wooddsw

    Easy SQL Date test against a Timestamp

    This app is using an OLE DB provider for SalesLogix and I never considered it being an ODBC/OLE DB syntax. Thanks for the update. While this app is taking the date from a text source and not using the system getdate() function I don't think the fractals precision is critical. However, I see...
  19. wooddsw

    Easy SQL Date test against a Timestamp

    Working with Dates/Timestamps have always been a challenge for me within SQL and based on the threads many others as well. I've been troubleshooting a problem query that's not meshing with a Crystal report. Just for kicks I displayed the query within Crystal and was surprised at the way...
  20. wooddsw

    MSINFO32 starts up Help & Support

    I've attempted to run MSINFO32 on my XP sp2 system and am being taken to the Help and Support application. I've attempted to execute the application using the entire path at the command line and get the same result. I've also tried WINMSD and am taken to the same screen. I've only found one...

Part and Inventory Search

Back
Top