Viewing 15 posts - 1,291 through 1,305 (of 1,353 total)
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...
November 28, 2003 at 8:03 am
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...
November 17, 2003 at 7:25 am
quote:
CREATE TABLE [dbo].[AAAATable1] (
[A] [int] NOT NULL ,
[varchar] (50) NOT NULL ,
[c] [int] NOT NULL)
GO
ALTER TABLE [dbo].[AAAATable1]...
September 22, 2003 at 12:29 am
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,...
August 29, 2003 at 7:46 am
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...
August 27, 2003 at 8:43 am
Ich weiss jetzt, dass ich gesagt haben sollte:
"Ich gratuliere. Bis mein naechstes EMail..."
Ich versuche immer besser zu sein.
Ron
August 26, 2003 at 1:47 pm
Frank,
Ich congratuliere. Bis meinem naechsten EMail...
Ron
August 25, 2003 at 9:10 am
quote:
If you are using temp table inside a stored procedure there is an advantage using a @table instead of #table. The stored...
August 11, 2003 at 11:18 am
I guarentee that we are using a trusted connection with our MTS objects. Bottom line: no hardcoded passwords.
August 5, 2003 at 11:10 am
quote:
For now, if you must have separate boxes for IIS and SQL you either need to go with anonymous or use a...
August 5, 2003 at 9:23 am
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,...
August 5, 2003 at 7:50 am
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...
August 4, 2003 at 3:07 pm
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
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...
July 31, 2003 at 2:01 pm
quote:
I agree with you about ‘sa’ account. My question is if I don’t use ‘sa’ to connect ODBC, which account should I...
July 31, 2003 at 1:47 pm
Viewing 15 posts - 1,291 through 1,305 (of 1,353 total)