Forum Replies Created

Viewing 15 posts - 4,381 through 4,395 (of 6,216 total)

  • RE: Connection for Front End Application

    App roles arent my favorite. You still have to have the password embedded in the app.

    Andy

  • RE: Syncing Users in master

    DTS will work if you have SQL2K and use the move objects part. There are a couple ways to do it other than that. It's just data, so you can...

  • RE: Update Trigger

    The logical inserted and deleted tables let you see the before/after image. Remember that these tables may hold 0 or more rows, the trigger fires once per transaction, not once...

  • RE: Finding SQL Servers

    Ok, you got me. I'll see if I have MSDE on a machine at home tonight, have to finish researching another issue anyway.

    Andy

  • RE: Finding SQL Servers

    As far as I know it should still work. Did you have MSDE running?

    Andy

  • RE: How do I speed up big inserts

    Consider using bulk insert. You'd have to time it, but in some cases it may make sense to drop your indexes and add them back afterward.

    Andy

  • RE: DTS and Full-Text Catalogs

    Are you dropping the table each time?

    Andy

  • RE: passing in a varchar

    Nothing simple. You can set up a bunch of int parameters based on what you think the max you'll ever need is and build your logic based around them. Or...

  • RE: how to give alert to a computer in frontend

    Your choices are to use a trigger or polling. With a trigger you could send the notification directly, or add a row (or more) to a table and have the...

  • RE: SP as a data source

    Using a temp table isnt a bad way to go. You can do it easily using the insert...exec syntax. I think you can accomplish what you want more directly by...

  • RE: From Developer to DBA - Wise career move?

    I think I agree with Brian. Only caveat - sometimes a broad range of skills makes sense, sometimes you need to specialize - look at the medical market, GP's vs...

  • RE: case statement in sql server

    No, then you're really trying to do something a bit different. You can do it by building the sql and passing it to Exec(). In other words, the case will...

  • RE: Stored Procedure Log File

    Not that I know how to do. Possibly at a very low level, either in SQL or part of the ODBC/OLEDB layer. Only other suggestion I have is to profile.

    Andy

  • RE: varchars and text datatypes

    Generally columns of 8000 chars should be text columns, I'd say probably anything over 2000 even. SQL2K has the text in row option to offset the penalty you pay for...

  • RE: Truncating the Transaction Log (not resizing it)

    Are you replicating anything? Transactions marked for replication have to be cleared by the log reader before they can be purged.

    Andy

Viewing 15 posts - 4,381 through 4,395 (of 6,216 total)