Viewing 15 posts - 1,186 through 1,200 (of 1,884 total)
The question was about configuration OPTIONS and the answer was about configuration TYPES. Configuration Options is what config items are configured. Configuration types is where all of the config options...
December 6, 2005 at 1:55 pm
did you try to pass it as an output parameter from SP?
December 5, 2005 at 1:34 pm
Hi,
had the same problem myself with the same description. I had no problems on Windows 2000 server but had on 2003 server. I had to download XMLSQL. Here are my...
December 5, 2005 at 1:20 pm
Hi SQL Junkie,
You may want to read SQL Server 2000 Administrator's companion, it has a whole chapter, a very good one on the RAID levels as applicable to the databases...
December 2, 2005 at 12:20 pm
Gimli,
I did not say dynamic sql statements if used with sp_executesql or Execute statement are not compiled. I did not say anything at all. I just wanted to point out...
December 2, 2005 at 11:33 am
I think it is perfectly clear!
- The amount of time per tick is computer-dependent
- Each tick on the operating system is 31.25 milliseconds, or one thirty-second of a second.
- This...
December 2, 2005 at 11:16 am
Randy,
1. Stored procedures are pre-compiled (performance) and easier to use due to less room for the errors and typos when writing application code.
2. Make use of Table-valued functions that combine...
December 1, 2005 at 12:22 pm
Syspermissions table. From BOL: "Contains information about permissions granted and denied to users, groups, and roles in the database. This table is stored in each database"
Sysprotects table. From BOL: "Contains...
December 1, 2005 at 9:55 am
Papillon and Rudy,
1. There may be a virus similar to described in
http://windowsxp.mvps.org/toolsquit.htm
"Why does Task Manager, MSCONFIG, or REGEDIT disappear while opening?"
This virus also affects MMC, I had the...
December 1, 2005 at 9:45 am
MJ,
I did realise you have no control over application code, but I though you may have control over the stored procedures that app is using. But now I realise that...
December 1, 2005 at 9:13 am
Hi,
The BOL topic "Char and Varchar" says:
".....Remarks
When n is not specified in a data definition or variable declaration statement, the default length is 1. When n is not specified...
December 1, 2005 at 9:00 am
Hi,
I had (have and will have) the similar case. With the same DBCC Auditevent error messages. I had (have and will have) to change sp_adduser that a third-party industry leader...
November 30, 2005 at 4:25 pm
MJ,
Why are your creating a cursor ? This is a stored procedure, it is executed on the server anyway, would not just a regular select statement do?
I think maybe I...
November 30, 2005 at 4:04 pm
They should report different names in some cases. See Books Online @@Servername topic:
"......
Although the @@SERVERNAME function and the SERVERNAME property of SERVERPROPERTY function may return strings with similar formats, the...
November 30, 2005 at 3:11 pm
Hi,
To get a single value from a database table field with VBscript see below. Replace MyServerName, MyDatabaseName, MyUser, MyPassword, MyTable and MyField with your values.
Code creates a recordset with values...
November 30, 2005 at 2:42 pm
Viewing 15 posts - 1,186 through 1,200 (of 1,884 total)