Viewing 15 posts - 7,066 through 7,080 (of 7,466 total)
- if you modify a sp, use the alter procedure syntax, so security keeps in place.
- What's the error, how can you tell it is not working ?
April 5, 2004 at 1:21 am
- why not put the tables in 1 db (if it is on the same box)? (if you want physical-files per table, use filegroups)
- You can perform the dri-checks you...
April 5, 2004 at 1:11 am
Just my 2ct
first use profiler to determine what's going on.
Activate those switches that inform which sql is being used within the sp.
this will put more load on your...
April 5, 2004 at 12:46 am
In fact, it should be the calling part that should qualify the owner of the called object.
Because sqlserver 6.5,7.0,2K did not implement schema...
April 1, 2004 at 11:52 pm
put a clustering index on it and use rebuild index or indexdefrag
also take a look at pad_index and fillfactor
April 1, 2004 at 10:49 pm
This might help if it were only for me or if I was the onlyone to be registering servers on clients, however, that is not the case.
I would like to...
April 1, 2004 at 6:39 am
did you adjust connection-timeout settings in EM or QA ?
April 1, 2004 at 12:26 am
I've already tested that (change of keyname) with no luck,
but the key-value is a bunch of hex-stuff, where I think It all has...
March 31, 2004 at 10:42 pm
replace the "distinct" with a "group by" if you can, it might get index-only access, whilest distinct is an extra passthroug of the resultset .
- http://www.sql-server-performance.com/cursors.asp
- http://www.sql-server-performance.com/dp_no_cursors.asp
- http://www.sqlservercentral.com/articles/articlesexternal.asp?articleid=477
March 30, 2004 at 11:56 pm
your last "group by" is not allowed.
How about :
update ft
set ft.peso= fiii.NewPeso
from ft
inner join fi fii
on ft.ftstamp=fii.ftstamp
and ft.fdata between '20040201' and '20040229'
inner join
(select...
March 30, 2004 at 10:59 pm
sqlagent needs to be restarted when you activate the first alert.
March 30, 2004 at 1:54 am
- If it occurs while running the sp :
check your network-card/cable the computer where you get the error.
If it occurs on #-computers, check network-card/cable at the server.
- Check out if...
March 26, 2004 at 12:38 am
Very nice
Many have been searching for this and (like I did) build their own sqldmo-solution.
March 26, 2004 at 12:22 am
"Therefore, I am trying to create very general indexes on each table that will serve generic needs (my attempt at half-way optimizing the DB). So each table has a unique...
March 24, 2004 at 11:54 pm
Viewing 15 posts - 7,066 through 7,080 (of 7,466 total)