Viewing 15 posts - 6,706 through 6,720 (of 7,472 total)
for this you don't need "case" but correlated subquery
select * from dyna.dtaTenant t
where not exists
(
SELECT 1
FROM dyna.dtaTenant
INNER JOIN dyna.ctlLinks
ON dyna.dtaTenant.DyKey =...
February 10, 2005 at 1:02 am
One of our customers stated he didn't need backups copied to a safe place.
When he tested his backup-power-system there was this litle problem where in stead of 220V the...
February 10, 2005 at 12:08 am
only one client ?
The more stupidities they produce, the more they'll need people like us
Make it...
February 9, 2005 at 7:24 am
how about using transactions to get isolation ?
Offcourse everything has a price !
CREATE PROCEDURE GetColor
@OutRowID INT OUTPUT
AS
BEGIN
-- print statements added for debugging
SET NOCOUNT ON
declare @trancount int
set @trancount...
February 9, 2005 at 12:28 am
firts : ALTER DATABASE yourDB Set [RESTRICTED_USER , ]
READ_only WITH ROLLBACK IMMEDIATE
then perform your restore.
After restore, the db will be in the same state as it was when...
February 9, 2005 at 12:03 am
where is your query or error-generation command ?
select ...
from employee E
inner join Rooms R
on E.EmpRoomNum = R.RoomNum
inner join Device D
on D.DeVRoomNum = R.RoomNum
and D.DevSignByEmp = E.EmpID
would be...
February 8, 2005 at 7:01 am
.Bak files should be restored
check restore database in books online
I didn't check the forum-group
Now my responce...
February 8, 2005 at 6:52 am
Is this a clustered server ?
February 8, 2005 at 12:27 am
EnterpriseManagers does not autorefresh.
If you don't trust its results, disconnect and connect again so it refreshes all catalog-data.
Hitting F5 at the tables-tree in the lefthand pain, also may help.
February 7, 2005 at 6:42 am
check this site's search : "remove duplicates".
Test it before going live !
Many of us use Query Analyzer to perform this kind of stuff.
(Enterprise...
February 7, 2005 at 5:40 am
Thanks for the addition, Frank.
I was to much in a hurry for my lunchbreak.
.... and lost...
February 7, 2005 at 5:09 am
select yourkeycolum(s) , count(*) as counter
from your_object
group by yourkeycolum(s)
having count(*) > 1
-- order by yourkeycolum(s)
I hope this helps
February 7, 2005 at 4:09 am
I'ts always a nice year if you can look back on it
Be patient, be strong and shut off your nose
February 7, 2005 at 3:10 am
February 7, 2005 at 2:09 am
Viewing 15 posts - 6,706 through 6,720 (of 7,472 total)