Viewing 15 posts - 31 through 45 (of 108 total)
You should also be able to use the Client Network Utility to create a SERVER\INSTANCE alias for TCP, specifying the port number.
March 28, 2006 at 5:54 am
I have seen a similar error in the JDBC world. It was caused by a program where every object performed its own database call to populate itself (each call making...
March 27, 2006 at 7:55 pm
I am not sure why connection pooling is needed at all. I thought the whole idea of pooling was to reduce the number of connections needed by intermediate (web or...
March 25, 2006 at 3:02 am
you might try: select * into data51.dbo.inventory from data01.db.inventory
March 25, 2006 at 2:16 am
try:
alter procedure JFM_process
as
begin
set nocount on
declare @myspid int
create table #inputbuf
(
EventType varchar(15),
Parameters int,
EventInfo varchar(255)
)
declare @cmd varchar(200)
declare curProcess insensitive cursor
for
select spid from master.dbo.sysprocesses
where spid >...
March 25, 2006 at 1:48 am
text or image columns? = 8KB minimum per non-null entry, with the only sure way to reclaim the space of deleted entries being to copy the table to a...
March 25, 2006 at 12:11 am
I think the point is being missed here. Both queries are incorrect.
Consider:
select convert(varchar, getdate(), 101), getdate(),
case when convert(varchar, getdate(), 101) = getdate() then 'equal' else 'not equal' end
03/24/2006 2006-03-24 20:45:04.533...
March 24, 2006 at 8:49 pm
Nearly everybody who backs up across the network takes a performance hit. And a reliability hit. Period. The question is whether it is "good enough" for you. Personally, I wouldn't...
March 24, 2006 at 5:55 am
101 is mm/dd/yyyy, so is not canonical; i.e. the year has less significance in a character string representation than the month or day. Therefore, character comparisons are only valid for...
March 24, 2006 at 5:34 am
A rough approximation of the number of bytes for a row can be had by: select datalength(col1) + datalength(col2) + ....
March 24, 2006 at 5:15 am
Port 1433 is the default port for SQL Server connections. It is an exploit only to the extent that it is well known as the default, and is therefore easier...
March 24, 2006 at 4:58 am
In general, no, not in the query. Formatting such as this (between rows) is usually done by the client program. The query itself just returns a relation (table). Your second...
March 24, 2006 at 4:48 am
Don't know about your error, but fiber mode is set with the 'lightweight pooling' option:
sp_configure 'show advanced options', 1
go
reconfigure
go
sp_configure
go
-- observe state of "lightweight pooling 0 ...
March 24, 2006 at 4:35 am
neither one requires "offline". "Repair minor errors" in integrity checks requires single user mode.
March 21, 2006 at 7:20 am
If examining master..sysprocesses (sp_who, sp_who2) doesn't give you enough clues, then download and run pssdiag.exe and read80trace (rml.exe) from microsoft.com. They collect and analyze a ton of info for you.
March 21, 2006 at 6:21 am
Viewing 15 posts - 31 through 45 (of 108 total)