Forum Replies Created

Viewing 15 posts - 24,901 through 24,915 (of 26,486 total)

  • RE: Index tipp required

    This is just a guess, but I would not be surprised that if you looked at the Execution Plan, that the query is doing an Index Scan, and if you...

  • RE: Historical Dollars

    A perspective employer could argue that a history of increasing salaries is a measure of competency. If you were doing the hiring and saw someone had remained at the...

  • RE: Backups

    As the question specificaly mentioned SQL Server 2005, you could queue up a COPY_ONLY backup to start when the scheduled backup finished. This copy_only backup would not distrupt the...

  • RE: How torestore database from full backup to certain point of time

    Hopefully you included the norecovery option in the restore of the full backup. if not, you will have to redo the restore of the full backup.

    How many transaction log...

  • RE: Finding open records over time without loop

    Just one last question, based on the sample data provided, what is your expected output?

    😎

  • RE: How torestore database from full backup to certain point of time

    Lubo Petrov (4/7/2008)


    properties of bak file created March 26 at 12:00:20 AM Modified at 12:01:10 AM

    properties of trn file created March 26 at 12:00:22 AM Modified at 12:01:27 AM

    I'm want...

  • RE: Apostrophe in the data.

    roy.tollison (4/7/2008)


    select * from table1

    where ((col1+col2+col3) in (select (col1+col2+col3) from table2))

    my col3 unfortunately contains the apostrophe. how can i get it to work correctly?

    have you tried this:

    select

    ...

  • RE: backup and restore without sysadmin in dev and qa enviornment?

    From what I can tell, then the only option short of sysadmin is the dbcreator fixed server role. This would allow them to create new databases, but also to...

  • RE: backup and restore without sysadmin in dev and qa enviornment?

    Looks like you'd have to assign them to db_owner in those databases that you want them to have backup and restore rights. If you only want to give the...

  • RE: learning notification services

    I agree with with Matt. We just had an on-site instructor out here for a week, and we had him totally skip the Notifications part of the class just...

  • RE: Updating only changed columns

    GSquared (4/7/2008)


    Since you can't change the trigger, the only thing I can I can think of is breaking up the update code into batches.

    if (select Col1 from dbo.Table where id...

  • RE: Help with Execute Process Task

    We use an Execute Process Task to zip a set of txt files before they are transferred to a MSP. The attached document shows how we have setup the...

  • RE: Database Mail Reply To account

    Jack Corbett (4/7/2008)


    Accroding to Wikipedia:

    A software development acronym for Quick Fix Engineering. This is the Microsoft and Intel term for a hotfix

    ASP - Active Server Pages

    Yes it means that there...

  • RE: Database Mail Reply To account

    Okay, I'm old and really tired of all the TLA's everyone throws around under the assumtion that we all remember what they are (for example what is ASP, and there...

  • RE: Automatic execution of a query

    Sounds like a scheduled job to me. I'd encapsulate the process in a stored proc, and then execute the proc in a scheduled job.

    😎

Viewing 15 posts - 24,901 through 24,915 (of 26,486 total)