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

    Please help: Error with moving from Verison 8.5 to 9

    Another post led me to APOS last week. In the "Freeware" section they offer a CR8.5 Runtime file installer. I haven't used it myself, so I can't vouch for it.
  2. dzman1

    Difference between @Table and #Table in a Stored Proc

    I recommend always setting a Primary Key in table variables, as in: Declare @tblStaff Table ( staffID int NOT NULL, periodBudget money default 0, stdBudRate money default 0, nextPeriodBudget money default 0, daysWorked int PRIMARY KEY CLUSTERED (staffID)) If the...
  3. dzman1

    How do you name your fields?

    I vote for your first example: custID custFName custLName I like the clarity of having a single column name for a particular piece of data in every table where it occurs.
  4. dzman1

    Crystal Enterprise Tutorial

    If you only have responsibility for developing reports of the same general format as you've done before, the CR Designer application itself doesn't change drastically from CR to CE or even across versions after CR 8.5 (and not all the changes there are undisputed improvements). The big changes...
  5. dzman1

    Exporting Options in Crystal Report Viewer

    The export choices are hardcoded in the web-delivered versions of CRViewer that I'm familiar with (CR 8, 8.5, 9?). In the Designer, you see what's currently available.
  6. dzman1

    add sql command - parsing error

    1) Make sure there's no Record selection or Group Selection formula. 2) Put check by "Database server is case-insensitive" db advanced option or use ALL CAPS. Set most other DB performance type options OFF. 3) Don't use double quotes (or straight brackets) unless you absolutely have to for...
  7. dzman1

    No Open Server on SQL Server 2000

    A company I just started on contract with has a problem with a CR8 report that worked against a SQL Server 7 stored procedure, but fails with a 'Server not open' error against the same SP on SQL Server 2000. Any ideas? It would sure help me seal the deal on my employment here for the...

Part and Inventory Search

Back
Top