Viewing 15 posts - 121 through 135 (of 203 total)
Use Profiler
If none of your known persons are supposed to logon using "sa" , turn Security Audit Level to ALL for debugging.
If required alter sp_password to log any executions of that...
March 12, 2004 at 6:32 am
If Disk Space is only concern, I would have done following,
Switch DB recovery mode to SIMPLE (just while the process is running)
Update the column to null in a loop (...
March 12, 2004 at 6:27 am
select 'alter table ' + o.name + ' alter column '+ c.name + ' varchar(' + convert(varchar, c.length ) + ') '
from syscolumns c inner join sysobjects o on c.id...
March 12, 2004 at 6:15 am
I had SQL 2000. & Did forgot to check BOL about this.
BINARY_CHECKSUM is not available in SQL 7. 0
March 12, 2004 at 2:10 am
Binary_CHECKSUM Returns the binary checksum value computed over a row of a table or over a list of expressions. BINARY_CHECKSUM can be used to detect...
March 12, 2004 at 1:17 am
A quick way that I used to use this scripts on Case Sensitive Servers
was to load the script in Query Analyser
CTRL + A (select ALL)
CTRL + SHIFT + L...
March 11, 2004 at 4:00 am
You could achieve this by using dtsrunui.exe that ships with client tools. User has to do a logon, retrieve list of dts available, fill in parameters and execute package.
I...
March 8, 2004 at 10:40 pm
Try this
adocm.ActiveConnection = AdoDREAMConn
adocm.CommandType = adCmdStoredProc
adocm.CommandText = "SP_EXPORT_SUPPLIER"
adocm.Parameters.Refresh ' or manually append parameters ....
adocm.Parameters(1) = param1_value
adocm.Parameters(2) = param2_value
.
.
.
adocm.Parameters(n) = param_n_value
MsgBox adocm.Parameters( out_param_number )
MsgBox adocm.Parameters( 0 ) ' for return value of...
March 4, 2004 at 11:38 pm
I suggest following rating system for Forums.
1. While posting the poster will rate his posting on a scale of 0 to 5 (not usefull to Very helpful).
2. The Starting member of...
March 4, 2004 at 7:24 am
Can you post the error messages when you try and run sqlsrvr from command line without any parameteres ?
Also did you restart the service using Control Panel -> Admin Tools...
March 4, 2004 at 3:16 am
Adding a print @Cmd to above proc and running it as a startup displays
[autoexec] copy ".2" "200403031522.log"
So i guess only the xp_regenumvalues does not work in startup proc....
March 3, 2004 at 3:05 am
I have altered the proc as per below.
The results,
The proc does fire. It also uses appr. DLL for xp_cmdshell and xp_regenumvalues , but still fails to...
March 3, 2004 at 2:50 am
This is still not solved ..................
I got one more PM and a email.
On reading PM, I get another email saying "This is friendly notification to inform you that Amit Jethva...
March 3, 2004 at 1:59 am
March 3, 2004 at 1:26 am
Viewing 15 posts - 121 through 135 (of 203 total)