Viewing 15 posts - 1,891 through 1,905 (of 2,043 total)
Never seen sql server dropping databases on his own.
Sure there isn't an (backup)application/job/user doing this?
Perhaps you can set up profiler to listen for sp_detachdb commands
October 17, 2005 at 10:29 am
You mean the scripts are stored on the server and are called using xp_cmdshell? Or that they are send across the network as sql-statements?
1)Advantages using stored procedures:
Reduces roundtrips (network latency)
Managebility,resusability...
October 17, 2005 at 10:26 am
SELECT convert(datetime,'20050910') as myDate
select convert(varchar(20),convert(datetime,'20050910'),103) as myVarCharDate
Should do it.
October 17, 2005 at 4:46 am
select avg(DurationSummed.duration)
from
(select sum(duration) duration
from cutlog group by datepart(dy,date))
) as DurationSummed
?
October 16, 2005 at 12:51 pm
make an union?
select columnA as MyColumn
union all
select columnB as MyColumn
union all
select columnC as MyColumn
October 16, 2005 at 4:36 am
In order to update on a linked server there should be a primary key on the table to function as recordidentifier.
October 15, 2005 at 7:12 am
Delimiting all identifiers is an excellent approach.
I think by lazyness and readability we decided to use a naming convention prohibiting the use of problem object names ( like spaces in...
October 15, 2005 at 7:06 am
The Convertion of char data type to a datetime type resulted in an out-of-range datetime value.
-> results in a date before 1753
Look up CONVERT for an extra format parameter.
October 15, 2005 at 6:57 am
This article should help you on the way:
http://www.sql-server-performance.com/rc_hardware_planning.asp
Sql server performance: 80% application+design,20% hardware
Hardware performance benefits: memory (the more the merrier-> less slow IO activity needed),IO subsystem, cpu (as this...
October 15, 2005 at 6:54 am
it is possible for windows 2003 enterprise
Windows Server 2003 Enterprise Edition supports 32 GB of physical RAM. Windows Server 2003 Datacenter Edition supports 64 GB of physical RAM by using...
October 15, 2005 at 6:36 am
not sure, but I believe Gold = non beta
October 15, 2005 at 6:32 am
What is temporal upward compatibility
Making that a future version can read the information off an older version?
October 14, 2005 at 12:45 pm
X = null is always Unknown
Compare to NULL with X IS NULL
October 14, 2005 at 10:29 am
I'm not sure what {business_idx=$''STERILIZES''} does.
The query looks fine if there are indexes on businessid, ZIPID.
What does exec tdbExecuteReturnPageL @sql, 3, 20 ?
October 12, 2005 at 9:53 am
if the sql servers are based on windows 2003 servers, the errors come forth since windows 2003/xp security was added to microsoft transaction coordinator.
See:
October 12, 2005 at 9:45 am
Viewing 15 posts - 1,891 through 1,905 (of 2,043 total)