Viewing 15 posts - 7,051 through 7,065 (of 7,472 total)
does the sqlserver-service account or the sqlagent-service-account have network authorities to make the connection ?
When you run it using EM, it also uses the rights you - as a windows...
April 15, 2004 at 6:36 am
as long as no one will use your "hours"-column for timecalculations, all workarounds may be fine.
If you want to perform timecalculations, be more strict...
April 15, 2004 at 4:50 am
or use a nested table expression :
SELECT T1.NewColumn, Table2.SelectCol2, count(*) as Counter
from ( select *
CASE WHEN Table1.Name LIKE '%FOO%' THEN 'FOO TOO'
else Table1.Name
END as NewColumn
FROM Table1) T1
inner JOIN...
April 15, 2004 at 4:17 am
my Ying says its basicaly the same, but with usage-constraints
my Yang says "use the defaults because some...
April 15, 2004 at 1:11 am
should work like this :
create table t_muteNULL (col1 int identity (1,1) not null, col2 varchar(128) , col3 varchar(128))
go
alter table t_muteNULL
add constraint chkMuteNULL check (case when col2 is null and...
April 15, 2004 at 12:22 am
it converts it into a correlated subquery
problem ? no problem one just has to know and...
April 13, 2004 at 6:41 am
based on system catalog info (designed for sql2k sp3)
select u.name as TbOwner, o.name as TbName , x.name as IxName, xc.name as IxColName, xk.keyno...
April 13, 2004 at 12:08 am
April 9, 2004 at 7:17 am
- did you see a popup window at serverside "user32.dll failed to initialise..." ? Check KB184802
In that case, sqlagent will wait for a "ok" reply to that...
April 9, 2004 at 12:36 am
maybe http://www.sqldts.com has what you're looking for
April 9, 2004 at 12:32 am
- _WA** are just statistics, that 's not the same as a regular index.
- However it does give you a hint on which columns are used for searchoperations.
- Use "create...
April 9, 2004 at 12:30 am
1) - there is no need to perform detach/attach to make a backup !!
That way you'll waste backupspace and you'll have downtime.
-...
April 9, 2004 at 12:22 am
Youre welcome, thats what this group is all about
Actualy, there's a little bug because a for delete trigger only has the deleted object...
April 6, 2004 at 3:00 am
CREATE TRIGGER TrU_T_Server ON T_Server
FOR delete
AS
if exists (select * from userdb2.dbo.T_ServerDB B
inner join inserted I
on B.idnrserver = I.idnr )
begin
raiserror("There are still dependant rows" ,16,1)
end
go
April 6, 2004 at 12:52 am
I think there even are some articles regarding SET and ANSI at this site.
April 6, 2004 at 12:46 am
Viewing 15 posts - 7,051 through 7,065 (of 7,472 total)