Viewing 15 posts - 46 through 60 (of 207 total)
Not only does it provide the above data but also
Technology 90 nm
Core Speed 2666.7 MHz
Multiplier x Bus speed 16.0 x 166.7 MHz
Rated Bus speed 666.7 MHz...
July 29, 2008 at 12:06 pm
There's a nice little utility called CPU-z. It will provide you a nice little report of your processor (make, code name, cores, and even if Hyper Threading is turned on)...
July 29, 2008 at 11:38 am
GilaMonster (7/29/2008)
Haven't we all. 😉 It's a good place to start, nothing more.
July 29, 2008 at 9:56 am
Gail, while I tend to agree I've run into some very bad choices at client sites. One company had a non clustered inde on their status column (foreign key to...
July 29, 2008 at 9:36 am
Sandy, in typical SQL Server speak the answer is "It depends". Look at the data in that column. Does it have a wide range of distinct values or a few...
July 29, 2008 at 9:21 am
IT depends on the number and type of counters used but in my eperience I've never seen more thant a 1% or 2% increase in CPU.
July 28, 2008 at 6:24 am
How about this...
put the queries you want executed in the after house window inside a procedure or procdures. Create a user with explicit permissions to execute them. Deny execute to...
July 24, 2008 at 3:29 pm
If you want to know how SQL Server is changing the port when you use EM, Configuration Manager, etc... Start a Profiler trace then make the change.
July 24, 2008 at 3:17 pm
You can also use SQL 2005's PIVOT function.
Doug
July 7, 2008 at 3:47 pm
ok, 3rd time's a charm...
update table
set {column name} =
replace( replace( {column name}, '!', ''), '''','')
where
charindex( '!', {column name}...
July 7, 2008 at 3:44 pm
Darn code block! It removed the "column name" parameter
update table
set {column name}, '!', ''), '''','')
where
charindex( '!', {column name} ) > ...
July 7, 2008 at 3:42 pm
If I understand correctly you're just replacing the double quote ('') and ! correct? The replace function can be nested like this...
update table
set ...
July 7, 2008 at 3:39 pm
Are usernmae/password part of the query string?
Then use '?username=' + @username + '&' + 'password=' + @password
May 23, 2008 at 6:04 am
Remember, xp_cmdshell is a synchronous process and control will not return to SQL Server until this process is complete. Therefore, when executing a process outside of the SQL Server environment...
May 22, 2008 at 9:06 am
Viewing 15 posts - 46 through 60 (of 207 total)