Forum Replies Created

Viewing 15 posts - 3,316 through 3,330 (of 3,617 total)

  • RE: Mozilla Firebird

    Andy,

    Sorry to add to your woes but I also get the (1 item remaining) message on the shwmessage screen, although everything appears to work correctly. 

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=61&messageid=93623

    If I click the...

  • RE: Mozilla Firebird

    No Andy, but then under Mozilla the reply form is just bog standard HTML rather than the ActiveX control you see under IE.

    Under IE I can see all the toolbars...

  • RE: Update table hangs

    I would also recommend putting some sort of logging code into your front end app.

    When I have my code in a DLL then every function has an error trapping clause...

  • RE: SP Problem With VB6

    Have you noticed that when you write an ActiveX DLL, passing values ByRef is faster than ByVal, but when you write an ActiveX EXE the opposite is true?

  • RE: Stars

    Just as an aside, every year in Britain we have the New Years honors list where persons who have made a great contribution to British life get enobled with awards...

  • RE: Review of MySQL/PHP Database Applications

    Frank,

    The $HTTP_REFERER, $HTTP_POST_VARS and $HTTP_GET_VARS stuff is dictated by the PHP.INI file. I'll find out which setting it is that determines thebehaviour and pass it on when I return...

  • RE: Backup slows system down too much

    I appreciate your problems with a couple of hundred databases, but the thought of trusting the backup of that lot to one maintenance plan gives me the screaming heebie jeebies.

    One...

  • RE: Review of MySQL/PHP Database Applications

    My brother in-law described PHP to me as "imagine if all the frustrated ASP programmers got together and said 'I wish ASP did this', then they got drunk and added...

  • RE: Stars

    I suppose the aim is to have a quality mark against the posts on the forum.

    The stars do not affect the validity of the answers given.

    At present you have a...

  • RE: SP Problem With VB6

    You could have coded your SP as follows

    CREATE PROCEDURE usp_check_login

      @username varchar(20),

      @password varchar(20) AS

      SET NOCOUNT ON

      SELECT user_id,

        user_active as login_active,

        user_loginattempts as login_attempts,

        user_type

      FROM tbl_user

      WHERE user_username = @usernameAND user_password = @password

      RETURN @@ROWCOUNT

    GO

    That...

  • RE: Best Practices in an Adhoc Environment

    TRUNCATE also fails if you use foreign key constraints, regardless of whether they are violated.

    I fully agree that people should not be allowed to create datbases willy-nilly.

    If developers go creating...

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

    Firstly, I've come across SQL6.5 a couple of times recently because it was a huge undocumented, mission critical application written in C++ where the source code had been lost. ...

  • RE: Two Best Practices!

    I tend to use short meaningful abbreviations, which is fine for databases with a few tables, but if you get an app with thousands of tables then your abbreviations cna...

  • RE: Two Best Practices!

    quote:


    Dude should have normalized his database...


    Probably bought the list from a...

  • RE: Two Best Practices!

    quote:


    For the second best practice, i would like to add

    Give proper alignments or Indent while writing the joins to make...

Viewing 15 posts - 3,316 through 3,330 (of 3,617 total)