Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Hiding stored procedure code

    I've found the posts about open source interesting and good reading. On the whole, I like the open source business model; however, in this case, my client has a compelling...

  • RE: Securing a Payroll Database

    I don't know of a document that spells this out but the bottom line is this: the only way to keep IT out is to set up a separate instance...

  • RE: Table Design Question

    After doing some performance testing against a sample database of a million, records I found indexed views are as fast as pre-aggregating the data. So, my proposal to my client...

  • RE: Table Design Question

    Do you need to maintain the relationships between the levels of aggregation? I mean, will the total sales of city1, city2 ... cityN in state1 add up to what is...

  • RE: Table Design Question

    I'll consider it. I see it useable with either design approach.

  • RE: Front-end for Sql server - What's best?

    A lot of what you use depends on what you're doing. "Right tool for the right job" type of thing. I've found that if you want to grow an Access...

  • RE: SQL INSERT INTO from a SELECT

    You can also skip the table creation steps and select directly into the table:

    Select <myfields> Into ##NewTable From <myTable> etc.

    This does create a temporary table to file. It's structure is...

Viewing 7 posts - 1 through 7 (of 7 total)