Forum Replies Created

Viewing 15 posts - 1,501 through 1,515 (of 1,993 total)

  • RE: Duplicate numbers in a column

    delete from mytable where vendor_num in (select vendor_num from mytable group by vendor_num having count (*) >1 ) and o_objid is null

    MVDBA

  • RE: Inserting rows into a linked servr

    i'm pretty sure you can't use select into on linked servers.

    same as create proc/table etc -

    you have to create the table with a direct connection on the target...

    MVDBA

  • RE: A Freeware offer for SQLServerCentral.com Members

    I agree - all of the apps i downloaded seemed to be pretty shoddy. especially periscope which i still havent managed to get to work correctly.

    RAAS seems to be fairly...

    MVDBA

  • RE: A Freeware offer for SQLServerCentral.com Members

    I've followed the instructions and replied to the trial liscence email with the correct phrase in the subject line, but so far have not received a full liscence key......

    MVDBA

  • RE: Server Farm Reporting - Part 1

    but if you're using linked servers how are you running commands like

    dbcc sqlperf(logspace)

    which would tell you if a log were large or not required intervention (i.e a developer...

    MVDBA

  • RE: Server Farm Reporting - Part 1

    This is something i've been looking at for a long time and it's intersting to see how other people approach the problem.

    unfortunatly I came across a stumbling block in using...

    MVDBA

  • RE: Hard at Work

    Japie,

    I'm jealous. my colleagues seem to think that a single man like myself would have it easy, no ties or binds. but by the time i finish my working...

    MVDBA

  • RE: Data Modeling

    redgate's "sql dependency"

    http://www.red-gate.com/products/SQL_Dependency_Tracker/index.htm

    It's great, but for large databases (i.e thousands of tables) it chews up graphics memory and slows your system. - best used with about 50 tables max

    it will...

    MVDBA

  • RE: Unexpected EOF encountered in BCP data-file - Replication

    you have to drop any subscriptions to it firts - but enterprise manager won't let you do that through the gui -

    here is the script

    sp_dropsubscription @publication = 'publication'

    ...

    MVDBA

  • RE: @@Servername problem

    sp_addserver 'msyserver','local' also requires you to stop and re-start the service before it takes effect

    MVDBA

  • RE: Unexpected EOF encountered in BCP data-file - Replication

    i have come across this on several occasions.

    i tried dropping the article and adding back in before creating a new snapshot, but the problem re-appeared.

    the only method i've found of...

    MVDBA

  • RE: Writing SQL Faster

    I hate the way articles on this site have started to become "adverts"

    if it's a balanced article about the merits of refactoring and intellisense then mention the competition.

    what could have...

    MVDBA

  • RE: Detect Replication

    look at sysdatabase.category

    select * from sysdatabases where category&&1=1 or category&&4=4

    this will tell you if it is published via transactional or merge replication - see books online sydatabases for...

    MVDBA

  • RE: How SQL Server Chooses the Type of Join

    rather than looking at recompiles and statistics, how about looking at your joins themselves.

    would it be possible to have 2 versions of the proc - each with distinct join...

    MVDBA

  • RE: Parsing T-SQL

    you can also try using SET FMTONLY on/off

    will execute the query, but not affect any rows or return rows (only metadata)

    this would show up errors better than parseonly for missig...

    MVDBA

Viewing 15 posts - 1,501 through 1,515 (of 1,993 total)