Viewing 15 posts - 7,291 through 7,305 (of 7,472 total)
Why perform the shrink database if you've truncated the tables and are planning to load ?
build your load-data sorted on the tables clustered index and then load.
you could also put...
December 16, 2003 at 5:22 am
1.5 ct
maybe you could try to drop/create the proc with QA at your server ?
This could solve dependant settings (that are stored with the sp)
Edited by - alzdba on 12/16/2003...
December 16, 2003 at 3:01 am
- Log Simple does mean it only keeps the log-data until commit is done.
- Maybe index b.recstatus and force the use with hint.
- To keep log-chunks low you could make...
December 16, 2003 at 1:03 am
- If you can avoid lock-escalation, do so.
So set a table lock when you start loading.
- You can have autgrowth active, but if you detect space may be allocated during...
December 16, 2003 at 12:49 am
correct.
Should be :
CREATE VIEW v_selectarticle
AS
SELECT TOP 100 PERCENT article_id, headline FROM ARTICLES
ORDER BY article_id desc
December 16, 2003 at 12:26 am
This is a long shot, but maybe you could download a trial copy of erwin(CA) or another dbcompare-tool, reverse engineer your scripted db and compare it to a reverse engineered...
December 15, 2003 at 12:58 am
If you no longer want the jobownership-burden to be able to start a job, create an alert which you let start the job. So when you want to start your...
December 15, 2003 at 12:11 am
IMO this is not supported for sqlserver.
(unlike DB2)
What you could do is alter the clusterd index of those partitioned-view-parts to 100% fill and rebuild it. Keep in mind to put...
December 12, 2003 at 8:38 am
I think I've read this in a server-migration descussion/whitepaper.
There is a update sysjobs script which puts the new servername in the "originatingserver"column.
If I'm correct all it took was just a...
December 12, 2003 at 7:57 am
FYI: The replies counter in forums is not correct. It goes from 0 to 2.
Is there a way to Unsubscribe from a topic notification ?
December 12, 2003 at 7:53 am
maybe this helps :
select o.name
, c.text
FROM dbo.sysobjects O
inner join dbo.syscomments C
on O.id = C.id
and O.xtype = 'V'
where C.text like '%CREATE VIEW %'
December 12, 2003 at 7:44 am
when opening a page I already start scrolling down before it is complete.
When it completes, it scrolls to top.
Can you avoid that?
December 3, 2003 at 8:39 am
just my 2ct
Could you elaborate why your update statement would not qualify to be done using this view ?
If the update works, I presume you'll still find these data through...
December 2, 2003 at 12:31 am
- do you all have 56" screens ?
Where 's the time we had automatic wrapping ? I don't like to be scrolling horizontal.
- I also get some...
December 2, 2003 at 12:17 am
hanslindgren:
quote:
--------------------------------------------------------------------------------
Oki, in your opinion, what is application needs? Are they never relying on queries?
--------------------------------------------------------------------------------
Of Course it's ALL about queries ! But it's a tradeoff as to which one(s) will be...
November 21, 2003 at 7:53 am
Viewing 15 posts - 7,291 through 7,305 (of 7,472 total)