Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 1,353 total)

  • RE: Transaction Log Backup

    I backup my transaction logs at 10 am, 2 pm, 6 pm, and 10 pm, as well as just before the full backup. I use the following code to...

  • RE: Restore Master on a new server

    I have restored master several times. Not sure what the -c is for, but I use the -m. I find I must leave the command window open while...

  • RE: Check constraint

    quote:


    CREATE TABLE [dbo].[AAAATable1] (
    
    [A] [int] NOT NULL ,
    [varchar] (50) NOT NULL ,
    [c] [int] NOT NULL)
    GO
    ALTER TABLE [dbo].[AAAATable1]...

  • RE: insert dimension id's

    The SQL statement to do this is actually long and tedious, but here is an example I use to do what you want to do:

    
    
    SELECT intDateID,...
  • RE: A virtual drink for everyone !!!

    Sorry all, I thought I'd practice my German because (as Frank knows) I will be in Germany starting next weeks for several weeks of temporary military duty. Since it...

  • RE: A virtual drink for everyone !!!

    Ich weiss jetzt, dass ich gesagt haben sollte:

    "Ich gratuliere. Bis mein naechstes EMail..."

    Ich versuche immer besser zu sein.

    Ron

  • RE: A virtual drink for everyone !!!

    Frank,

    Ich congratuliere. Bis meinem naechsten EMail...

    Ron

  • RE: #table vs @table which is better

    quote:


    If you are using temp table inside a stored procedure there is an advantage using a @table instead of #table. The stored...

  • RE: TRUSTED CONNECTION

    I guarentee that we are using a trusted connection with our MTS objects. Bottom line: no hardcoded passwords.

  • RE: TRUSTED CONNECTION

    quote:


    For now, if you must have separate boxes for IIS and SQL you either need to go with anonymous or use a...

  • RE: Triggers and multiple row updates

    Good point. I handle nulls in the trigger, but I didn't want to overclutter the answer. Still, your method of handling possible nulls is more elegant than mine,...

  • RE: Triggers and multiple row updates

    How can someone hate triggers? They are a very useful means of maintaining low level data integrity. I have noticed most of the coding examples one finds in...

  • RE: TRUSTED CONNECTION

    quote:


    Secondly, make sure you are using the Properties of the Connection String correctly. I have never seen "Trusted_Connection=Yes".


    August 4, 2003 at 2:53 pm

    #468539

  • RE: How to get the real USER_NAME?

    Create the SQL Account with a password. Alter the connection string, substituting sa with the new account name, and substituting the sa password with the password for the new...

  • RE: How to get the real USER_NAME?

    quote:


    I agree with you about ‘sa’ account. My question is if I don’t use ‘sa’ to connect ODBC, which account should I...

Viewing 15 posts - 1,291 through 1,305 (of 1,353 total)