Forum Replies Created

Viewing 15 posts - 31 through 45 (of 94 total)

  • RE: View in queries

    I think the difference is SQL Server is smart enough to know you have a literal in your IN clause.    My suggestion is to avoid the IN clause and to...

  • RE: Subquery Result

    A little more detail would help.  Perhaps some sample SQL of what you want to do.

  • RE: Record is empty but gets displayed..

    i believe you are dealing with the difference between and empty string and a null value.  There should be somekind of isnull functionality within your code, but if there isn't...

  • RE: Is it really a complex query?

    You have 1 question and 1 issue.  You don't have a key field in this table, unless it is a combination of the pointid and timein.  Which is using a...

  • RE: Two basic questions - Record Number and Index

    In your second question you asked about an index on a bit field helping.  Actually, you can't index a bit field.  SQL Server doesn't really need help with it, basically,...

  • RE: What''''s your developer productivity?

    How do you deal with complexity and size of task differences?  The developer who completes 10 quick hit tasks will be more productive than the developer who completes 1 task...

  • RE: What''''s your developer productivity?

    I completely agree, but do you have any way of producing metrics for your work?  Accuracy of delivery? On Time delivery?  Bug Fixes? etc?

    If you do or know a good...

  • RE: What''''s your developer productivity?

    In our home grown OMS (1 developer for 1.5 years) we have the following statistics:

    23 Triggers

    159 Tables

    175 Views

    222 Procedures

    22 Foreign Key Constraints

    13 Functions

    118 Constraints/Indexes

    126 Primary Keys

    and a Visual Basic Front...

  • RE: Is it possible to reference the Type of an table-field in a SP like pl/slqs %type ?

    You can use the syscolumns table in the database in question to get the columns of a particular object.  The type of column is determined by the xtype field.  You'll...

  • RE: Any query experts ??? Very urgent pls!!!

    Helen's suggestion works but it is an undocumented feature that may not continue with future versions of SQL Server.  My suggestion is to create a function that loops through the...

  • RE: Reporting Services Installation Error

    Agreed on all counts.

    The installation was a nightmare on my end as well, but the product features and the power of the reporting language has been well worth the effort and...

  • RE: syntax error in t-sql stored procedure

    Without too much knowledge of VB.Net it looks like you might need to include the owner of sp_insert.  But in VB.6 you need to identify the type of command the...

  • RE: Limiting Record Deletions

    Look at it as job security.  Then my suggestion is to use views that do not allow deletions (where needed) and also some triggers could help.  But be careful with...

  • RE: Reporting Services Installation Error

    Michael.  The reporting server service needs to be initialized.  This can be caused by quite a few different issues.  The first thing to do is follow the suggested steps in...

  • RE: Limiting Record Deletions

    Views would be my suggestion.  Give them the ability to delete records from the view, but not delete permissions on the table. 

    But why would users have this kind of...

Viewing 15 posts - 31 through 45 (of 94 total)