Forum Replies Created

Viewing 15 posts - 20,671 through 20,685 (of 22,202 total)

  • RE: Telecommuting

    Sounds like heaven. We're trying to convince our bosses to let us telecommute regularly (we're able to do it now on snow days or when the cable company is coming...

  • RE: Interview guidelines

    Mahesh Bote (4/9/2008)


    [font="Verdana"]

    Grant Fritchey (4/9/2008)


    You call out of TSQL to WMI process to launch a .NET app... right?

    Gant, I am not getting you?

    Mahesh[/font]

    Sorry, it was joke. Jeff asked how to...

  • RE: copying data between servers

    We've found the fastest way is to export from one database out to an SSIS RAW file and then back into the next database in the next server. Storing the...

  • RE: Best Editor To use

    Because we use DBPro (aka DataDude) I do a lot of TSQL programming in Visual Studio. It's not terribly good, but the integration with TFS & DBPro makes it necessary.

  • RE: Forcing hints when using sp_executesql

    You will have to pass them in for a SQL guide.

    Here's an example:

    EXEC sp_create_plan_guide @name = N'APlanGuide',

    @stmt = N'SELECT * FROM [Person].[Address] WHERE [City] = @0',...

  • RE: Interview guidelines

    You call out of TSQL to WMI process to launch a .NET app... right?

  • RE: Executing a stored procedure periodically

    But the constant updates from a single spid that is always connected won't act like a transaction & hold that lock open? Just asking, not arguing.

  • RE: What kind of DBA are you?

    DonaldW (4/9/2008)


    Mike Menser (4/9/2008)


    DonaldW (4/9/2008)


    Grant Fritchey (4/9/2008)


    Perks? I thought it was the job definition!

    It is as far as I'm concerned. If I don't tick people off on a regular...

  • RE: Interview guidelines

    Our starter questions are:

    What's the difference between a clustered & non-clustered index?

    What's the difference between blocking & deadlocking?

    How do you trap errors in SQL Server 2005?

    What does the NOLOCK hint...

  • RE: Executing a stored procedure periodically

    But you don't need to read data from that table while it's running do you? It looks like, from what you have, that it's going to lock at least a...

  • RE: Benchmarking/Load Testing Tools

    There are two that I've been able to work with well. Idera's SQLScaler and Quest's Benchmark Factory. Either one should be able to do what you need. Although I honestly...

  • RE: What kind of DBA are you?

    Perks? I thought it was the job definition!

  • RE: Forcing hints when using sp_executesql

    You've got a list of parameters inside the query. You should run your query through sp_get_query_template which will give you the correct output and the list of parameters as it...

  • RE: How To Desing a Database

    At least you asked a nice simple question...

    Learn some relational design methods. Make sure you take the time to pick good clustered indexes for your tables. Concentrate on set based...

  • RE: Virtualization for Database Development

    michaela (4/9/2008)


    This looks like a bad experience. The trick with using VMs is to treat them - logically speaking - as real machines. Then the next question would be: why...

Viewing 15 posts - 20,671 through 20,685 (of 22,202 total)