Viewing 15 posts - 61 through 75 (of 77 total)
This post needs a big reply, rather beyond me I'm afraid.
A few points, however:
- I'd go for RAID 0 + 1 it's far more write-efficient than RAID 5. Definitely worth the extra...
September 30, 2004 at 10:04 am
This is a leftover from pre-EM days. It's a reminder that you have to run RECONFIGURE WITH OVERRIDE for your configuration change to take affect.
The full syntax in query analyzer...
September 28, 2004 at 8:16 am
I implemented a 'home made' log shipping solution for my company's Disaster Recovery environment after I found the official SQL Server one to be too inflexible.
Basically I use a combination...
September 28, 2004 at 7:59 am
Another belated agreement but what was true in 2002 is true now.
The practice may have seeped over from Oracle where application objects are usually owned by a specific user (sys...
September 23, 2004 at 4:53 am
A useful reminder of an old and under publicised stored procedure. Microsoft seem to be 'suppressing' sp_addalias in favour of roles but as you say roles don't always fit the bill. I...
September 23, 2004 at 4:01 am
Your script looks good although the TRUNCATE_ONLY breaks the log sequence but then you've coped with that by backing the db up immediately afterwards.
Maybe add the DBCC SHRINKFILE as an...
September 21, 2004 at 4:35 am
You have to install the Pervasive client software on the box running the SQL Server then set up an ODBC DSN to the Pervasive database. You should then be able to...
September 20, 2004 at 6:54 am
I tried adding indexes to both columns of both tables but always ended up with a '2', but then I guess an index will always order as 1,2,3 etc.
Good question though.
September 20, 2004 at 6:33 am
My guess is that setting the web page to windows authentication means the CONST definition is ignored. The page tries to connect using Windows authentication and your Windows login is...
September 13, 2004 at 3:52 am
Differentials can only be restored over the last full backup, there's no way around this.
Your options are:
(1) Don't do full backups outside your weekly schedule. Ad hoc differentials are OK...
August 20, 2004 at 6:34 am
I reckon SQL Server's backup & restore capabilities are excellent and easy to use (have you ever backed up an Oracle database??) so don't reinvent the wheel. Back your dbs up to...
August 12, 2004 at 3:56 am
Well, I didn't know that! Better rewrite our hundreds of stored procedures now
Why the reference to OLTP (Online Transaction Processing)? Surely it would...
August 10, 2004 at 4:20 am
You can use a combination of SUBSTRING and PATINDEX to get to the first number in the string.
PATINDEX accepts ranges as a search expression in the form ' %[from-to]%'. This can...
August 5, 2004 at 9:13 am
I would retain the function as a stored procedure. Moving processing outside SQL Server will introduce more windows for error, esp. if you're moving large result sets to & from...
August 3, 2004 at 5:06 am
Viewing 15 posts - 61 through 75 (of 77 total)