Viewing 15 posts - 6,916 through 6,930 (of 7,472 total)
aaarch Wednesday morning syndorme
affected my query !
-- if all [account#] have rows...
July 28, 2004 at 2:34 am
"I am basically looking for all account #’s that have no systems associated to them"
SELECT [Account#]
From [System_Account_Association]
where [Associated?] ='NO'
group by [Account#] -- in stead of distinct because it...
July 28, 2004 at 1:52 am
You'll have to check with your developer(s) to see if they realy need all possible bytes.
Meybe they've worked out a combination so they don't exceed 8060 bytes in a...
July 28, 2004 at 12:54 am
In fact, that QOD pushed me to launch this thread.
We don't use CR, so I loose that argument.
July 27, 2004 at 11:49 pm
- what's the servers load when you try to connect and suffer the problems :
* cpu
* memory
* tempdb-load
* network
* numer of connections at the server
...
July 27, 2004 at 3:56 am
with this supposed to be correct result : please contact pss.
July 27, 2004 at 12:57 am
when expantion is done "in process", you may get timeouts to the "expand file" request. SQLServer then says "...file full".
The request itself is not terminated, but is completed after...
July 26, 2004 at 12:34 am
from BOL :
WITH <termination>
Specifies when to roll back incomplete transactions when the database is transitioned from one state to another. Only one...
July 26, 2004 at 12:07 am
Maybe this udf can be used as a workaround :
if exists (select * from dbo.sysobjects where id = object_id('dbo.udf_Get_Last_DayNr'))
begin
Drop Function dbo.udf_Get_Last_DayNr
print 'Dropped'
end
go
Create Function dbo.udf_Get_Last_DayNr
( @Start_DateTime AS datetime ...
July 23, 2004 at 8:05 am
Maybe you can read the reg-key from within your application's front-tier (not at the mid-tier or server) and have the timezoneshift delivered by your application.
July 23, 2004 at 7:49 am
Frank Kalis pointed me toward a way to find out the local timezone using the registry :
DECLARE @delta INT
EXEC master.dbo.xp_regread
'HKEY_LOCAL_MACHINE'
, 'SYSTEM\CurrentControlSet\Control\TimeZoneInformation'
, 'ActiveTimeBias'
,...
July 23, 2004 at 7:42 am
This is without a question a joint venture of DA and DBA.
But if you forget to have your standards supported by you top-level ceo your project...
July 23, 2004 at 6:14 am
in sql2k you can also use
alter database yourdb SET OFFLINE WITH ROLLBACK IMMEDIATE
This way you avoid problems with reattatching the db at the same server and all users...
July 23, 2004 at 3:23 am
If you only want the userid - names , you can query against systables using Isql.
These are queries against the systemtables; I do not recommend to make an habit of it.
If...
July 23, 2004 at 2:26 am
take a look at : http://www.sqlservercentral.com/scripts/contributions/1130.asp
Keep in mind that this will not work on encrypted procs in the system.
If you are only looking for...
July 22, 2004 at 12:50 am
Viewing 15 posts - 6,916 through 6,930 (of 7,472 total)