Forum Replies Created

Viewing 15 posts - 7,291 through 7,305 (of 7,466 total)

  • RE: immediate execution of job via SP or ASP

    If you no longer want the jobownership-burden to be able to start a job, create an alert which you let start the job. So when you want to start your...

  • RE: Compress tables or filegroups

    IMO this is not supported for sqlserver.

    (unlike DB2)

    What you could do is alter the clusterd index of those partitioned-view-parts to 100% fill and rebuild it. Keep in mind to put...

  • RE: Search and replace data in a column

    I think I've read this in a server-migration descussion/whitepaper.

    There is a update sysjobs script which puts the new servername in the "originatingserver"column.

    If I'm correct all it took was just a...

  • RE: Comments and Bugs on New Design

    FYI: The replies counter in forums is not correct. It goes from 0 to 2.

    Is there a way to Unsubscribe from a topic notification ?

  • RE: Database Scripting Issues

    maybe this helps :

    select o.name

    , c.text

    FROM dbo.sysobjects O

    inner join dbo.syscomments C

    on O.id = C.id

    and O.xtype = 'V'

    where C.text like '%CREATE VIEW %'

  • RE: Comments and Bugs on New Design

    when opening a page I already start scrolling down before it is complete.

    When it completes, it scrolls to top.

    Can you avoid that?

  • RE: Problem with "WITH CHECK OPTION"

    just my 2ct

    Could you elaborate why your update statement would not qualify to be done using this view ?

    If the update works, I presume you'll still find these data through...

  • RE: Comments and Bugs on New Design

    - do you all have 56" screens ?

    Where 's the time we had automatic wrapping ? I don't like to be scrolling horizontal.

    - I also get some...

  • RE: QOD 21 Nov

    hanslindgren:

    quote:

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

    Oki, in your opinion, what is application needs? Are they never relying on queries?

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

    Of Course it's ALL about queries ! But it's a tradeoff as to which one(s) will be...

  • RE: QOD 21 Nov

    I entirely agree happycat59's comments. Plus the fact each clustering index should be picked, based on application-needs. You don't change clustered ix just because a query runs slow. First stage...

  • RE: Reseting Logins after detach and attach

    use userdb -- User-db

    go

    print 'print @@servername + '' / '' + db_name()'

    print 'go'

    go

    declare @username varchar(128)

    declare @Musername varchar(128)

    declare @IsNtName bit

    declare @sql_stmt varchar(500)

    --cursor returns with names of each username to be...

  • RE: Error running script Upgrade.sql (SQL7 sp4)

    http://support.microsoft.com/?id=264123 might have been the problem.

    Due to production pressure, I've had to solve it with uninstall reinstall of SQL7 up to SP4 and then reattatch the db and recreate the...

  • RE: dev's using sa on production - help

    grab "the best of sqlservercentral.com 2002", you'll find more info regarding this.

    maybe a search on this site gets you in the right direction.

  • RE: Event ID: 1069

    Check your cluster log and the sqlserver-log regarding what is going on and where it fails.

Viewing 15 posts - 7,291 through 7,305 (of 7,466 total)