Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 1,984 total)

  • RE: Better way to do?

    So @SeedTableName,@TestExecutionTableName are variable tables?

  • RE: SP4 installation problem

    Looks like xpstar.dll has not been put in the registry.

    Try adding it by using regsvr32

    like regsvr32 xpstar.dll in the directory where xpstar.dll is located.

     

  • RE: Slow Running Query!!

    Don't know if pushing the where clause in the join syntax yields more performance.

    DECLARE @FuSSIN VARCHAR(9)

    SET @FuSSIN = '123456789'

    DECLARE @lYear SMALLINT

    SET @lYear=YEAR(GETDATE())

     SELECT

      C.Account      as [Account Nbr],

      @lYear- Year(C.BirthDt)  as [Age],

      isnull(C.ObjectiveName,'')   as [Objective],

      C.AnnualIncomeRange     as...

  • RE: Trigger Question

    Try it more set-based, the triggers only does fire once.

    Haven't written it all out.

    /*INDIVIDUAL INFO*/

    UPDATE FamilyGroupInfo

    /*FEMALE COLUMNS starting with m??*/

    SET

    mFirstName = CASE myAccountTAble.GENDER WHEN 'F' THEN myAccountTAble.FirstName ELSE mFirstName END,

    mGreeting...

  • RE: Deadlocking & Keylocks

    Can you post the routine?

    Since the SPID's are different I assume 2 different users.

  • RE: Log changes to text file fromtrigger

    There is no standard command for logging DataModelingLanguage-statements.

    If you mean datachanges, you could periodically start a job that would write data from the auditing table to a file.

  • RE: APPLICATION FAILED - UPDATES HAVE BEEN BACKED OUT

    Is your application AllFusion Gen ?

    Has it worked before? If so, what has changed?

    Is your machine up to date with patches?

    Is your sql server up to date with patches?

    Is this...

  • RE: APPLICATION FAILED - UPDATES HAVE BEEN BACKED OUT

    Can you contact the support of the application?

  • RE: Problem with sp_cursorfetch performance

    see http://www.sqlteam.com/item.asp?ItemID=11842

    on more info about ado properties.

    Basically sp_cursorfetch is called for each row of your recordset, causing a roundtrip (network delay (100ms?) -> 59*100ms = 5.9 sec).

    Plus it use a...

  • RE: Surprising problem with views SQL Server 2000

    I recommend not to use select * in views nor in stored procedures

    Cons of using select *:

    You don't know which columns actually will be queried.

    The lesser columns the faster. (less...

  • RE: Locking

    At which part there are blocking selects? section 1 (the conversion) or section 2 (assigning the language) of the code?

    What is the code behind dbo.IPStringToNumber?

    -------------------------------

    Declare @DateInPast datetime

    set @DateInPast=dateadd(d,-5,getdate())

    update dbo.wmsLog set longIP...

  • RE: Performance Comparison SQL 7 & 2000

    Perhaps the upgrade of the application has some optimisations that aren't so hard on the cpu? (improved queries ...)

  • RE: can''''t show properties of DB

    Looks like the server is too busy.

    How long you waited?

  • RE: Determining default db

    1)The default database is set by login. See sp_defaultdb in the books online.

    Not sure if they can still login when the default database is offline.

    (can somebody confirm or correct this?)

    2)They...

  • RE: Access Database in a Different Domain

    perhaps you should trace the route the pakket that ping sends.

    in a "dosbox"  ( execute cmd)

    tracert 10.0.0.5

    should deliver an output (or similiar):

    tracing route to 10.0.1.5 over a maximum of 30 hops

    1) <10...

Viewing 15 posts - 1,906 through 1,920 (of 1,984 total)