Forum Replies Created

Viewing 15 posts - 16 through 30 (of 45 total)

  • RE: Need a fresh approach to something quite simple

    siz if you want more performance use this in your group by and select

    dateadd

    (d,datediff(d,0

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: SQL 2000 Vulnerability using SQL Server Management Studio

    Hi lance can you tell me on wich roles this user is included ?

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Setting a variable to the results of an Exec () statement

    If the result from the query is a value (No a table) you can use something like this.

    DECLARE

    @sql

    nvarchar(2000

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Dynamic Filter & Dynamic Snapshot Replication ?

    How did you setup the dinamic snapshot  , how many suscriber do you have.

    i'm traing to do the same. But ussing the Sql server Winzards for all my 500 suscribers...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Replication failed during processing the articles..

    You may want to try modifying the replication profile in the sql server.

    the amoutn of row per batch , give it an small number.

    go to tools\ replication\ configure publisshing\ agent...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: How to reset identity ?

    Truncate table will work too.

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Removing a database from replication

    To delete the merge replication use this script.

    sp_replicationdboption @dbname =  'DatabaseName' ,

        @optname =  'merge publish' ,

        @value =  'false'

     

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: SQL Prompt IntelliSense for SQL Server

    On my case the program takes a lot of memory m and ussing version 2.0.0 , some times takes 128 MB of memory.

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: If ExISTS

    I think you are taiking the incorrect path. Load the file to a folder , shcedule your DTS to run every 1 hour or so, your dts shuld look if...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Adding Columns

    Correct you may want to look for

    sp_repldropcolumn

    and

    sp_addmergearticle

    You may need to have SP3 instaled.

     

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Start SnapShot agent in T-SQL

    Every time the you create a publication a jobs is created in sql server with this name

    [SERVER_NAME]-[DATABASE_NAME]-publ_[PUBL_NAME]

    don't you have it on you job list ?

    there is an step inside the...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Error in Timestamp to Datetime conversion in Primary key

    I no sure if the timestamp in java is the same as SQLSERVER timestamp.

    in SQL server timestamp is no a date time field. It is used to compare when was...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Conflicts from nowhere

    Same happen to me, installing sp4 may help you.

    see this from the MS website.

    Preventing False Conflicts

    Retention-based meta data clean up prevents non-convergence and silent overwrites of changes at...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: Fragmented Database being auto grown

    beside that , run a nightly job that create the indexs again and update the statictis. To avoid index framentation.

     

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

  • RE: How to retrive the Table Description

    SELECT

    * FROM Information_Schema.columns WHERE table_name = 'tbl_states'

    replace...

    Pedro R. Lopez
    http://madurosfritos.blogspot.com/[/url]

Viewing 15 posts - 16 through 30 (of 45 total)