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. Glowworm27

    Topspeed functions

    Hello, I am querying some TPS files and trying to build a query using an isnull() function such as "Select isnull(fieldname, '') as myfield from unnamed" also is there a listing of Topspeed functions that can be used? thanks G George Oakes CEO & President COPS Software, Inc...
  2. Glowworm27

    Writing to Topspeed databse from window

    Use ODBC to communicate with the data George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check out this awsome .Net Resource! http://www.learnvisualstudio.net
  3. Glowworm27

    sub vs function passing in parameters and returning value (Peer Code Review)

    Thanks CajunCenturion, I had feeling that because it was an object the compiler was treating it differently than a string or other data type variable. George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check out this awsome .Net...
  4. Glowworm27

    sub vs function passing in parameters and returning value (Peer Code Review)

    I am looking at the subroutine, and he is actually passing in the Odt object ByVal, not ByRef, so that wouldn't even work then would it? George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check out this awsome .Net Resource...
  5. Glowworm27

    sub vs function passing in parameters and returning value (Peer Code Review)

    Hello all, I am having to do a code review on one of our contractors and ran across an interesting piece of code. The contractor created a datalayer and used sub routines instead of functions to return values. And my question is why would he do this and how does it differ from best practices...
  6. Glowworm27

    aging report 30,60,90, 1Yr and each year after.

    I had thought of a table, but was hoping for a more Programatic way of doing this. As for leap years, the DATEADD function does take that into account. George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check out this awsome...
  7. Glowworm27

    aging report 30,60,90, 1Yr and each year after.

    All I need to display a group of records for the week. This group of records will be all records that are either 30, 60, 90 or 1yr old and each yr after. Because this is a weekly report I will be displaying records 30-37 days old, 60-67 days, 90-97 days and 365 to 372 days old and every year...
  8. Glowworm27

    garbage data on first line of SSRS report when exported to CSV

    There are no other data components on the form simply the fields that are layed out on the page. All other formats display the data correctly. with one exception, in Excel the first line is blank(where the headers might be, but there are no headers in the report) the rest of the formats are...
  9. Glowworm27

    garbage data on first line of SSRS report when exported to CSV

    Well its not only sent out as a CSV, others use the data for spreadsheets, and reporting elsewhere, so an SSRS report makes sense here. George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check out this awsome .Net Resource...
  10. Glowworm27

    garbage data on first line of SSRS report when exported to CSV

    I have an SSRS report, that returns data that we need to send to a main frame. The main frame will accept a CSV file, so we created a subscription to email the report in CSV format to the main frame. Problem is when the report runs, and the csv file is generated the first line of the report...
  11. Glowworm27

    Create time site column

    OK so this maybe a newbee question, so forgive me. I have a sharepoint list. the user needs to be able to enter a Date 1/1/2010 and a time 12:12:12 am I tried creating a date time column however the time shows up as a Hour, Minute widget and the minutes are in 5 minute increments. This wont...
  12. Glowworm27

    access infopath via URl with input params

    I want to open an infopath form via URL with input parameters, when the form opens I would like to use the input parameter to query a secondary datasource and return values to populate part of the form. For instance I have an inventory control infopath form. A user on the website has a list of...
  13. Glowworm27

    check if I am correct

    Yeah I knew that truncate was minimally logged, and deletes were logged with greater detail. the database is set to Simple recover mode how much does that affect the deletes vs the truncates? Thanks G George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer...
  14. Glowworm27

    check if I am correct

    Hello all, we have a SQL database that is populated with data from an Oracle database for website stuff. I did not write the queries that get the data, a former developer wrote them, and we have been having a little troulbe with the transacation logs and some other things. Which is how I got...
  15. Glowworm27

    help with group by

    never mind I figured it out.... select dbo.ProperCase(e.drivername) as [DriverName], Max(m.meterreading) as meterreading, Sum(f.fuelqty) as fuelqty, Sum(ftc.milesdriven) as milesdriven , (Sum(ftc.milesdriven) / Sum(f.fuelqty)) as MPG, e.groupid, e.unitid as [Unit Id], convert(datetime...
  16. Glowworm27

    help with group by

    I have a query that calculates vehicle mileage based on the miles driven fuel qty etc. Listing the driver and othe info. Issue is the software that gathers the milage and fuel data has problems sometimes, and stops the pump before the vehicle is full. So the driver has to enter in new...
  17. Glowworm27

    help reading xml files

    the only thing in the log file is this; Microsoft (R) SQL Server Execute Package Utility Version 9.00.4035.00 for 64-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 4:51:00 PM Error: 2010-03-25 16:51:00.80 Code: 0xC0016016 Source: Description: Failed to...
  18. Glowworm27

    help reading xml files

    I have created a ssis package that will look in a folder for xml files and import them into sql 2005. So I have a Foreach File Loop container. I set it to look at the specified folder, and save the fully qualified filename into a user variable called "filename" Inside the foreach loop...
  19. Glowworm27

    Select case help

    Jaxtell, Thanks that did the trick. I was pretty sure you couldnt compare nulls either but for the life of me could not remember why, or how to get around it. Thanks again G George Oakes CEO & President COPS Software, Inc. www.cops2005.com Programmer & Developer .Net, WSS 3.0, SQL DBA Check...
  20. Glowworm27

    Select case help

    Hello all, I am joining some tables together to produce a report. In one of the joins I am doing a left join and occasionaly that will not return data to my select query. I am trying to create a select case query that when the left join does not join a record to use the data in another field...

Part and Inventory Search

Back
Top