Forum Replies Created

Viewing 15 posts - 4,366 through 4,380 (of 6,216 total)

  • RE: Easy question: char or varchar?

    I would say yes. Typically I only use chars for small columns that are either null or fill the column..state abbreviations, things like that. The additional overhead for a varchar...

  • RE: De-Normalization

    Typically it's when you just can't get the performance any other way. Even then I'd look at using an indexed view or triggers to maintain it rather than relying on...

  • RE: What is 'ADO' doing for us?

    Where do you think you will gain performance? I agree that type checking isnt always a must have. Is it run time performance or time it takes to set it...

  • RE: What is 'ADO' doing for us?

    Good question. My hunch is that what you see is what you get. The advantage to declaring the parameters is you can be type safe on the client and it...

  • RE: how to get error message when DMO backup fails

    Seems like you're always going to have those problems anyway. A method I use for utilities is handle the one or two errors I see most often, other than that...

  • RE: Beta Test New Features

    We're currently using SQL full text search for our search engine. Can you give me an example of something you had trouble finding, give me an idea of what to...

  • RE: Data from 2000 to 7.0

    What file are you referring to then? Should be able to either BCP or DTS the data as long as the collations match.

    Andy

  • RE: How do I speed up big inserts

    In general those are good points, but in this case you probably don't want to size your system based on a single daily task. If you're consistently at those values,...

  • RE: Connection for Front End Application

    Totally agree with that point. Any type of simple obfuscation is worth doing to prevent this kind of casual snooping.

    Andy

  • RE: Auto Email From Insert to Table

    Yes, a trigger is probably the best, the alternative being to do a select against the table periodically (starting whereever you left off last). XP_Sendmail is not bad approach for...

  • RE: NOLOCK hint is being ignored

    Can you post the entire proc?

    Andy

  • RE: Emulating Constants in SQL Server

    I agree. I'd put about much thought into whether I'd treat something as a constant as I would in an app. Have to weigh the chances of it changing and...

  • RE: Data from 2000 to 7.0

    Are you trying to detach/attach, or just move data?

    Andy

  • RE: How to create, edit and remove stored procedures

    Sorry it took so long, had a few things to catch up on! See if this helps:

    Dim oServer As SQLDMO.SQLServer

    Dim oProc As SQLDMO.StoredProcedure

    Dim oProcs As SQLDMO.StoredProcedures

    Set oServer = New SQLDMO.SQLServer

    With...

  • RE: Finding SQL Servers

    Installed it as the primary instance on my machine at home, installed Dev edition as the second instance, picks up both of them with no problem. Here is the code...

Viewing 15 posts - 4,366 through 4,380 (of 6,216 total)