Forum Replies Created

Viewing 15 posts - 181 through 195 (of 236 total)

  • RE: Process Blocking Itself

    Do you have any UPDATE triggers between the two tables?

    If it ain't broke, don't fix it...

  • RE: transaction logs too late to apply

    Hi,

    I have solved one part of my problem   There IS a timeout setting when executing remote stored procedures. On the Properties dialog of the...

    If it ain't broke, don't fix it...

  • RE: transaction logs too late to apply

    Hi

    I have a similar problem. Since I have standard edition I have written my own log shipping routines which work fine all week. Every night there is a full backup...

    If it ain't broke, don't fix it...

  • RE: Poll #3

    The Matrix. I first watched the Matrix on a flight from London to Atlanta, and at the end of it I was left with a distinct feeling of 'what if...

    If it ain't broke, don't fix it...

  • RE: All About Transactions - Part 3

    Thanks for a great article which clearly explains the balance between isolation and concurrency. I have had to make extensive use of (NOLOCK) in reports to obtain good conurrency because the...

    If it ain't broke, don't fix it...

  • RE: Shipping database to backup server fails

    I thought standby could be used with either, certainly it doesn't cause any problems when I include it in the restore command run from query analyzer. I tried the command...

    If it ain't broke, don't fix it...

  • RE: This is Cool

    No doubt we will soon have books being written on-line, a page or chapter at a time, 'open source' style, with contributions from the readers.

    David

    If it ain't broke, don't fix it...

  • RE: HELP ME SQL QUERY

    If I understand you correctly, you are storing your SQL statements in Table10, and retrieving them to the variable @s-2 before executing them with exec sp_executesql.

    Is it that you want...

    If it ain't broke, don't fix it...

  • RE: Migrating Oracle IN statements

    Me too,

    I usually either end up concatenating columns to get the required condition, or using WHERE EXISTS.

    Didn't know that the correct name for these was 'row constructors'

    If it ain't broke, don't fix it...

  • RE: 8k or bust

    Hi

    I was wondering if you could build a SQL statement that used a JOIN and a searched CASE to generate the different columns instead of all the inline SELECTs. It might make...

    If it ain't broke, don't fix it...

  • RE: Windows Authentication with EM

    Logins assigned the system administrators (sysadmin) server role will automatically create objects belonging to dbo (look under dbo in BoL).

    David

    If it ain't broke, don't fix it...

  • RE: connecting to sql server from another computer

    Also worth checking the instance name on your old computer. If you have ever upgraded or re-installed SQL Server on the old machine you may need to specify the instance...

    If it ain't broke, don't fix it...

  • RE: Database Design and Reference Tables

    For a warning about taking this approach to extremes, see Don Peterson's article on Lookup Table Madness...

    http://www.sqlservercentral.com/columnists/dpeterson/lookuptablemadness.asp

    If it ain't broke, don't fix it...

  • RE: Remote Intanet SQL DOS Batch Backup?

    Hi,

    if you are trying to backup the file to a folder on another server then I suggest you create a shared folder on that other server, and give the account...

    If it ain't broke, don't fix it...

  • RE: IF...THEN or CASE to create A/R aging distribution.

    Hi,

    there are two forms of CASE statement described in BoL,

    Simple CASE, which yields a single column with different values depending on the results of the expression.

    SELECT

    CASE <expression>

      WHEN <condition1> THEN...

    If it ain't broke, don't fix it...

Viewing 15 posts - 181 through 195 (of 236 total)