Forum Replies Created

Viewing 9 posts - 9,631 through 9,639 (of 9,639 total)

  • RE: Connection to SQL Server is initialy very slow

    Not being a web developer I cannot be sure what the issue is.  One thing you can check in SQL Server is if the database Auto Close option is on. ...

  • RE: Securing a Payroll Database

    Finance is being unrealistic.  If they expect IT to offer any support then at least on IT person has to have Admin access to the server and to the database. ...

  • RE: suspected database

    First I would try to determine WHY the database is being marked as suspect.  Here are a couple of reasons we have had the problem at my office:

    You have a...

  • RE: Worst Practices - Not Using Primary Keys and Clustered Indexes

    I am a fan of using Identity columns as  primary key and then if appropriate using the "natural" key as unique clustered index.  Since the promary key is what should...

  • RE: Stored Procedure Use Results from another?

    If you are using SQL 2K you may want to examine using a table returning or inline user-defined function.  You can almost look at these like a parameterized view.  It...

  • RE: XP_SENDMAIL

    The correct way to call xp_sendmail using T-Sql is:

    Exec master.dbo.xp_sendmail

    The use keyword in T-Sql is to change the database context in which you are working.  YOu cannot do that...

  • RE: Cross DB Select from SP

    Cross Database ownershp chaining works, but you have to remember that enabling that means it works all the time.  SO if you have tables you do not want to have...

  • RE: Question of the Day for 05 Feb 2004

    I agree with the other posts.  Unless someone can tell me what hte Windows Application Application Log is I would have to say that the Windows APplication Event Log +...

  • RE: Partition View

    While I have not implemented partitioned views in porduction I have done some experimenting with them.  I believe that if you are using an Identity field in your tables that...

Viewing 9 posts - 9,631 through 9,639 (of 9,639 total)