Forum Replies Created

Viewing 15 posts - 9,361 through 9,375 (of 9,641 total)

  • RE: Who wants to be a SQL Server DBA?

    I enjoyed reading the article as I use articles like this to help me determine what SQL Server skills I am missing that I should have. I also think...

  • RE: Use of XML Data Type in Column

    Thanks Grant. Are you searching/querying against the XML column? Do you return the data in the XML column as rows and columns or just as XML?

  • RE: 9GB Transaction Log: when is OK to start fresh, and how?

    No one has asked yet, but what is the size of the DB and what is it's growth. Perhaps there are enough transactions to warrant 9GB Log size to...

  • RE: is this a good trigger?

    My "no trigger is a good trigger" comment was meant to be facetious. There are those who believe triggers are "hidden" code and should be avoided at all costs....

  • RE: Lookup or Reference tables

    1. I should add a FK Constraint on my Employees table to my StatusSub table (I realize that this won't guarantee RI, but it could be of help)?

    Correct. This...

  • RE: Lookup or Reference tables

    Ahhh, glad my brain works a little bit out of SQL anyway.

    As far as doing something wrong, nope you are not. The problem with the 2 table design is...

  • RE: Lookup or Reference tables

    My preference it the two-table approach. It means more coding on the SQL Server side, but allows more flexibility in the application. Again that is preference.

    If...

  • RE: Service pack 2 installation

    I was under the impression, at least with SSRS 2000, that if you used a different webserver you had to have SQL License for both servers. Is this true...

  • RE: Collation Error 468

    I had this issue pop up on my once and found the fix in BOL. I was under the impression that the 2 collations you encountered were the same....

  • RE: 9GB Transaction Log: when is OK to start fresh, and how?

    dandrade (10/9/2007)


    Your article is fine, but I am running SQL 2000. On the other hand, I checked for long running transaction and there is none. It seems is just a...

  • RE: OLE DB for SQL Server: TimeOut Expired

    What are you using for security to connect to the FoxPro database?

  • RE: Complex Count/Sum

    Wouldn't a simple query with grouping on Col2, COl3, and Col4 return the results you want, so you could process them in the C# application. Something like:

    Select

    ...

  • RE: Joins with Group BY

    If you have SQL 2000 why not do it SSRS (SQL Server Reporting Services) which is an add-on included in your license. A phone list is a 20 minute...

  • RE: Daily Notification via Stored Procedure

    According to BOL you could use the return value of the sp to determine if the message succeded. Like this:

    Declare @RetVal Integer

    Exec @RetVal = sp_send_dbmail @recipients=@To, @subject...

  • RE: Joins with Group BY

    As has been mentioned I don't see any aggregation going on so there is no real reason for a group by. Also I notice you are using Left Outer...

Viewing 15 posts - 9,361 through 9,375 (of 9,641 total)