Forum Replies Created

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

  • RE: Query Analyzer Replacement

    The only way, really, to restrict the use of the statements you mention is via the security model in SQL Server. Just don't assign the users the permission to...

  • RE: Cleaning redundent VIEWS and Stored Procs

    I would recommend using the Profiler method to see what's actually getting called. In addition though, you might want to consider using a grep program to sift through the...

  • RE: Order of Rows Imported Into SQL Svr 2000 Frm Excel

    quote:


    However, you can use a clustered index to store in a sorted manner


    To an extent...

  • RE: Intelligent vs. Surrogate keys

    I use surrogate keys almost exclusively when I have design control over a system.

    I find that composite keys make it more difficult to get good performance out of a join....

  • RE: Table Order!

    Wow, thanks for looking that up Frank. I must have read that in my 6.5 days... 🙂

    That explains why sometimes it works when I restort to using derived...

  • RE: Table Order!

    Maybe I'm dreaming this up, but I thought I had read somewhere that the query optimizer considers tables in groups of four, starting with how they are listed in the...

  • RE: excel load results in null values

    I use a similar trick to make sure I don't wind up with row after row of nulls. The only real difference is that after I paste it into...

  • RE: CRITICAL: Win Zip 5gb backup using command line

    I use WinRAR for pretty much any compression I need to do, but if you're looking for an archiver, you have to account for how slow WinRAR is. Zips...

  • RE: Other Than Cursors

    Quick couple of notes:

    Regarding locking... you generally don't have to worry a whole lot about this when working with ASP. Unless you're putting the connection and recordset object in...

  • RE: Storing arrays in SQL.

    Oh, and there's no problem with searching it. You just create some indexes that cover the struct_name, field_idx, and n_val or s_val fields. Searching is another reason I...

  • RE: Storing arrays in SQL.

    Something that no one has mentioned is that you could use a single table that looks something like:

    create table legacy_struct (

    struct_name varchar(255) , -- the...

  • RE: delta processing: alternative to cursor

    Just to chime in on the UDF issue... I think they are amazingly cool, but should be used in select statements with great caution.

    We were working on an application...

  • RE: Don't Use Transcender

    I don't think that the exam, by itself, really measures anything other than the determination require to study for the exam. I do think, however, that a professional looking...

  • RE: Data Dictionary from within SQL Server 2000

    Nice article, Mindy.

    DirkFrazier, I think your solution is equivalent to Mindy's. The [value] field on the [sysproperties] table is a sql_variant type, so you could store just about anything...

  • RE: Portable DTS Packages

    Good article. Dynamic DTS is one of the areas I want to become more familiar with.

    GoTroppo noted the use of INI files; I wanted to throw in my copper...

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