Forum Replies Created

Viewing 15 posts - 436 through 450 (of 495 total)

  • RE: ISNUMERIC Issue

    What do you know. I always knew that ISNUMERIC would work with commas but assumed it was because we used them when we write in the real world and...

  • RE: ISNUMERIC Issue

    In the US at least, a comma is used every three places to make numbers easy to read. You passed in in essence "one hundred thousand, two hundred" as...

  • RE: ISNUMERIC Issue

    Uh, no...

    100,200 is a real number. Just because it's in a character string doesn't change that. ISNUMERIC looks to see if whatever you pass it can be made...

  • RE: uSING XP_CMDSHELL

    Then script out the job, and add variables to the script for the path and the config file, and you can change the variables one time in that script. ...

  • RE: uSING XP_CMDSHELL

    I did read your code. You create two variables to indicate the path that the SSIS package is in as well as the path of the config file for...

  • RE: uSING XP_CMDSHELL

    A SQL Server Agent job running an SSIS package could be configured to point to a config file without a batch file. If all that the batch file is...

  • RE: query to change the field identity,Identity seed,Identity Increment

    As far as the seed goes, this will report the seed:

    DBCC CHECKIDENT ("FESD.dbo. Usernames ", NORESEED);

    GO

    And this will set the seed to 1:

    DBCC CHECKIDENT ("FESD.dbo. Usernames ", RESEED, 1);

    GO

    However, this...

  • RE: How to moniter, tune and resolve Performance issues of share point application

    SharePoint. Just say no if you can. Ugh. What a beast, and worst of all, there is nothing you can do to tune it. We've been...

  • RE: SImple Query Assistance

    select name, MAX(logdate) from sysdtspackagelog

    group by name

  • RE: uSING XP_CMDSHELL

    Better choice would be to create a job to run this (as a batch file) and schedule the Agent to run the job.

  • RE: Partial Update

    Check BOL for the REPLACE string function. This is what you want.

  • RE: How to revert recovered database to previous in recovery mode?

    We had a similar problem with DR testing and log shipping. One thing you can do is to use WITH STANDBY on the log shipping instead of NORECOVERY if...

  • RE: Terrible code, trying to tweak

    If recompiling it once helped but performance later degraded, maybe one way to band-aid the mess is WITH RECOMPILE so that the SP recompiles on every execution?

  • RE: 20,000 logins in five minutes !?

    4000 logins a minute for a small company sounds exhorbitant to me. How many connections on average do you have at any time? At my last job, a...

  • RE: Dirty Reads

    At least use

    SET TRANSACTION ISOLATION LEVEL READ COMMITTED

    in your transactions. Total guarantee of data accuracy (though it will cause issues with concurrency if the transaction is too long)...

Viewing 15 posts - 436 through 450 (of 495 total)