Viewing 15 posts - 7,036 through 7,050 (of 7,466 total)
- did you run sp_statistics on all the db after the upgrade ?
- execute your maintenanceplan or rebuild your indexes
April 20, 2004 at 12:02 am
- I'd only use a udf if there 's a need to be able to use it as a column _in_ a select clause . all others should go for...
April 19, 2004 at 6:39 am
- I'd say this is not what I'd call a UDF. Transform it into a normal select.
- remember a UDF works at row-level
- "select isnull(sum(line.totalQty),0)
April 19, 2004 at 5:01 am
Don't worry, must have been a top-secret question
I see a blank message too.
have a nice day
April 19, 2004 at 4:51 am
is tcp/ip enabled to be used for sqlserver ?
If I'm correct (local) uses namedpipes
April 19, 2004 at 12:09 am
IMO jobs are "posted" into the active sqlagent-memory. This is done at startuptime of sqlagent or at job-modification time when you use the propre sp's.
Allerts with joblaunch are intercepted by...
April 16, 2004 at 12:12 am
I don't know if your Grouping is realy needed (all selected columns are involved), but here's me shot :
-- @U_Untagged_T_Tagged_PctSign_All = '%' for ALL rows
-- 'U' for Untagged
-- 'T' for Tagged
Alter...
April 16, 2004 at 12:06 am
"However, when I schedule a job on SQL1 with the statement 'select * from SQL2.northwind.dbo.categories' the job runs fine; dito for SQL3. And when I execute the package directly, it...
April 15, 2004 at 7:45 am
No, when you open the dts-package and run it, it uses your client-stuff.
I didn't notify in your previous post that you ran it OK with...
April 15, 2004 at 7:32 am
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
Viewing 15 posts - 7,036 through 7,050 (of 7,466 total)