Viewing 15 posts - 7,036 through 7,050 (of 7,472 total)
- A rebuildindex will lock the object involved, so might interfere with your apps
- indexdefrag will not optimize as good as rebuildindex
April 21, 2004 at 12:54 pm
afaik (my guideline)
if the keyvalue(-combination) of your clustered ix is unique, it is designed to be the same.
if not, sqlserver will add a uniquifier to the clustering-index-key(s).
But in this case,...
April 21, 2004 at 12:45 pm
- you might use constraints to limit the numbers so only positive values are allowed.
- you could use a trigger so negative values are converted to positive values.
- but why...
April 21, 2004 at 1:04 am
don't know if it helps...
strConn = strConn & " INTEGRATED SECURITY='sspi';"
quotes added
April 21, 2004 at 12:06 am
- use decimal[(p[, s])] check BOL in stead of float.
- check constaints can help to delimit values :
from BOL :
ALTER TABLE doc_exd
ADD CONSTRAINT exd_check CHECK (column_a between...
April 20, 2004 at 4:01 am
no.
are the nt-users domain-users ? logged on to the right domain ? member of the correct nt-group ? within the correct dns ?
check...
April 20, 2004 at 3:52 am
- 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
Viewing 15 posts - 7,036 through 7,050 (of 7,472 total)