Viewing 15 posts - 286 through 300 (of 479 total)
Hi there Antares686, here is the DML
CREATE TABLE [Application_Function] (
[application_code] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
[function_id] [int] NOT NULL ,
[parent_function_id] [int] NOT NULL ,
[function_code] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT...
December 2, 2002 at 10:58 pm
Hi all
Some things to remember..
a) measures physical io, not logical, flush buffers when testing
b) force checkpoints when testing writes to force log flush
before trying it all on prod
Cheers
Ck
November 21, 2002 at 7:11 pm
Hi steve, good article.
Other things to watch:
a) if moving msdb and model at the same time, attach model before msdb. I have run it issues with database ID's...
November 21, 2002 at 6:25 am
Fantastic article.. thanks for the insight into some of the lower level commands, most appreciated.
November 21, 2002 at 2:56 am
Hi
Thanks for the emails. Sorry about the query actually, my fault, this was 1 of the many in an attempt to improve overall performance. The
DELETE FROM corpsys.dbo.organisation...
November 14, 2002 at 9:34 pm
DELETE FROM corpsys.dbo.organisation
where exists
(select org_id
from corpsys.dbo.organisation B with (nolock)
where last_updated_by = 'NTISImport'
and organisation.org_id = B.org_id)
(167 row(s) affected)
17min 35sec
November 14, 2002 at 1:22 am
btw.. i didnt even vote yet, where did my 3 stars come from?! sorry, it should be 5 stars! 🙂
November 11, 2002 at 6:09 pm
Hi
First of all from a comment made:
>>I am a great believer that SQL Server is too easy and has shot itself in the >>foot, as developers have designed bad databases,...
November 11, 2002 at 6:07 pm
Hi
Its far from worst practice, but is something to consider. Archiving off data and making it subsequently accessible for historical reporting (typicaly old user queries and auditing) is difficult...
November 11, 2002 at 7:28 am
Hi
Ok, cool, i initially ripped an example from sqldts.com for looping but its a tad restrictive with access databases. In the end, I adapted this code to generate a...
October 28, 2002 at 10:17 pm
Hi
One question:
WARNING: - This will use 1/8th of the memory available to SQL Server.
So, we open up 10 4kb documents it will do what to memory?? and what memory structure...
October 14, 2002 at 2:21 am
Hi
"duplexing" log backups (and fulls!) is common place for oracle dba's, but typically not to another server. Where possible, I always code it in with a simple custom SP...
September 29, 2002 at 6:01 pm
Hi all
This error can also occur if the proxy account's password expired, account is locked etc.
cheers
ck
September 25, 2002 at 11:45 pm
Viewing 15 posts - 286 through 300 (of 479 total)