Forum Replies Created

Viewing 15 posts - 4,876 through 4,890 (of 6,216 total)

  • RE: OLE DB provider 'SQLOLEDB' supplied inconsistent m

    Selecting via code or a stored proc?

    Andy

  • RE: Acheiving a lock through a cursor

    How about adding a locking hint to the select?

    Andy

  • RE: SELECT FOR XML

    There is a trace flag for making it a little easier to read. I think 257. Been mentioned a couple times in the SQL Mag XML column.

    Andy

  • RE: Maintenance plans

    Had some problems in v7 if you selected the repair errors setting, sometimes would get left in single user mode. Only complaint I have with it is the all or...

  • RE: When to Use Dynamic SQL

    Different regions meaning different parts of a table?

    Andy

  • RE: When to Use Dynamic SQL

    Seems like a function would work for that?

    Andy

  • RE: SQL bug - referencing user defined functions?

    From BOL:

    Calling User-Defined Functions

    When calling a scalar user-defined function, you must supply at least a two-part name:

    SELECT *, MyUser.MyScalarFunction()

    FROM MyTable

    Table-valued functions can be called by using a one-part name:

    SELECT *

    FROM...

  • RE: Modifying a column on a table being replicated

    SQL2K is definitely worthwhile for replication. Doesnt have everything yet, but every lit bit helps. Easiest way is to just run the distribution agent, that will move any pending transactions...

  • RE: Replication from 7.0 to 2000

    Should work without a problem. BOL is decent, the replication wizard saves a ton of time compared to figuring it out manually! If you haven't worked with replication before I'd...

  • RE: When to Use Dynamic SQL

    I hear you!

    My only thought on this is that most companies tend to fall into the same trap, adding functionality over time. It makes sense to trickle out changes...

  • RE: Object Naming Standards

    I use underscores some, usually in procs for usp_xxxx. Other than that I mostly use CamelCaseMoreOftenThanNot. Definitely skip the reserved words. And no spaces in object names! I believe in...

  • RE: FTP Replication

    It should be a proc in your master db - perhaps deleted somehow?

    Andy

  • RE: DTS and Replication

    Just a little bit. Doing any type of transform adds weight to the process and makes validation harder. Not that its a bad thing, just have to measure it!

    Andy

  • RE: Update triggers

    Except that it is an insert and not an update trigger!

    Andy

  • RE: Views and Variables

    Might also try removing the NOT if you can. Though worth testing to see if it changes anything.

    When you run these in QA, whats the response time look like? All...

Viewing 15 posts - 4,876 through 4,890 (of 6,216 total)