Forum Replies Created

Viewing 15 posts - 32,296 through 32,310 (of 39,748 total)

  • RE: nested procedure error

    Each time a stored procedure calls another, the nesting level increases. So if I call proc 1, I have a level of 1. If proc 1 updates table A that...

  • RE: Defragment and rebuild indexes

    Depends on your update/insert frequency. The more often you do those the more often you might want to defrag/rebuild.

    Lots of people do it weekly, some daily, some monthly.

    and some never....

  • RE: Comparing all columns in two tables

    tedious code. Or pay for something like Data Compare from Red Gate. Might burn the $300 cost in time very, very quickly.

  • RE: HELP to connect to MSSQL server

    Can you connect from the web machine to the SQL Server using query analyzer or the data sources in ODBC?

    Maybe the SQL 2000 instance is named, which means you'd need...

  • RE: Noobish Question

    First, put your ON clause after the join.

    from a

    join b

    on a.x = b.y

    join c

    on a.x = c.y

    etc.

    Next, do you want...

  • RE: Weirdest interview question?

    That is strange. I've never really been asked any strange ones. Mostly it's about me or technical ones.

    I think I'd wonder about someone that asked me that question seriously. I'd...

  • RE: Use Red-Gate''''s backup... and Go to Jail???

    Not sure what you mean for "recommended".

    Both Litespeed and SQL Backup are good products. They work slightly different ways and are better situated in different situations.

    I'd talk to both companies,...

  • RE: Secure Coding

    Doh! I fixed the ad, so it's a methodology. Brian's teaching the class, so I expect the myths will be few and far between

  • RE: Moving data

    sysjobhistory will show you where you are. sysjobs I believe shows the start time, so you can calculate the time elapsed.

  • RE: How to monitor user input?

    Profiler monitors all activity on the server, so all queries (SELECT, INSERT, UPDATE, DELETE). If each user connect with their own login, then this will work. If they share...

  • RE: SQL Mail

    You can possibly do this with xp_sendmail and authenticate to an SMTP mail server.

    The other thing to explain to your network person is that you need alerts sent to you...

  • RE: HELP to connect to MSSQL server

    This is a little confusing. Are you trying to connect to sql server 2005 or sql server 2000?

    Also, when you say you can connect with PHP, do you mean the...

  • RE: SQL Server Memory Incress

    Can you give some idea of the memory on the server and your setting? Also, do you mean that the server responds slow? That merges timeout or take too long...

  • RE: ''''QUOTED_IDENTIFIER'''' error

    What are the DB names?

  • RE: HELP! UPDATE QUERY won''''t complete!

    Michael has good ideas. Be sure your statistics are up to date as well.

Viewing 15 posts - 32,296 through 32,310 (of 39,748 total)