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 strongm 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. danno64

    Moving files from JFS to JFS2 and Back

    Does anyone know if moving directories and files from a JFS file system to a JFS2 file system and back is safe? Using AIX 5.1.0.3.
  2. danno64

    Notifies for Appointments Stopped Working (Groupwise 6.5)

    Just wondering if anyone has ever had this problem...I've been using Groupwise for several years and have always had my meetings and appointments give me a dialog box reminder prior to the meeting. For some reason, this has suddenly just stopped. I have checked all my options and anything...
  3. danno64

    Openquery insert into syntax

    I just figured this out today. Try this: INSERT INTO OPENQUERY(rftest1, 'SELECT field1, field2, fieldN FROM aqua.aqua.itin) SELECT field1, field2, fieldN FROM sqlTable WHERE ...continue WHERE clause....
  4. danno64

    Saving Password In SQL Server OLE DB Connection - Crystal 9.2.0

    I am currently using Crystal Reports 9.2.0 I have set up a report to use an OLE DB for SQL Server Connection. I cannot seem to get it to save the password. Thus, everytime I want to run the report, it prompts for a password. In Crystal 8.5, in the Database Connection SetUp Dialog Box, there...
  5. danno64

    Problems with Indexing a view to a single table.

    The first index on a view must be unique and clustered.
  6. danno64

    Problems with Indexing a view to a single table.

    I have a view into a single table in which I've added some fields to the view that are derived from combinations of other fields. That's the reason why I created the view. Most of these derived fields are caclulated financial data, but one field is just an identifier that is manipulated...
  7. danno64

    What happens when you read max integer in an Identity field?

    OK, figured it out. You get an 'Arithmetic overflow' error.
  8. danno64

    What happens when you read max integer in an Identity field?

    I haven't been able to find this answer in books, but what would happen if you tried to insert into a table that has an identity field and the field is at max integer?
  9. danno64

    How do you do a COUNT DISTINCT on multiple fields?

    Thank-you r937. I take it that "foo" is just some arbitray name that TSQL needs to execute the command?
  10. danno64

    How do you do a COUNT DISTINCT on multiple fields?

    I want to be able to retrieve the number of distinct rows in a table using multiple fields as the criteria for the Distinct keyword. SELECT DISTINCT field1, field2, field3 FROM Table1 ...gives a row listing of each distinct combination of field1, field2, and field3. But what I want is just...
  11. danno64

    Need Help With Grouping a Limited Number of Fields in Select Statement

    I am having trouble figuring out how to group by only a subset of the fields in a SELECT statement. Given this table: PersonID Dept EmplType Location Bonus 1 IT Manager A 10,000 5 HR Admin B 20,000 9 HR...

Part and Inventory Search

Back
Top