Viewing 15 posts - 4,441 through 4,455 (of 7,496 total)
with db mirroring, every action on the primary database is sent to the mirror db.
It is not active, so no one else can tamper with it.
October 6, 2008 at 12:31 am
Keep in mind a backup file can contain more than one backup !
Are you creating log backups using the NOINIT parameter ? That's the way you can add a backup...
October 5, 2008 at 3:15 am
check the ms website for more info and prereqs.
http://www.microsoft.com/sql/solutions/migration/oracle/default.mspx
and
http://www.microsoft.com/sql/techinfo/whitepapers/MigrOracleSQL2005.mspx
October 4, 2008 at 12:36 am
That should be ok.
October 3, 2008 at 11:54 am
Chris Morris (10/3/2008)
...but - without checking - it's probably expensive.
Yep, checking is what makes this job worth the while :hehe:
October 3, 2008 at 10:52 am
Chris Morris (10/3/2008)
[font="Courier New"]DECLARE @StringIn VARCHAR(200), @StringOut VARCHAR(200)
SET @StringIn = 'The Quick Brown Fox Jumps Over The Lazy Dog.'
SET @StringOut = ''
SELECT @StringOut = @StringOut +...
October 3, 2008 at 8:06 am
There is a MS white paper called "MS WP DatabaseMirroring.doc"
It contains a nice overview of all sqlserver replication techniques and when to use them.
This is a "hear say" :the only...
October 3, 2008 at 4:53 am
Our best friend ... BOL ... guided me on this one :w00t:
/*
http://www.sqlservercentral.com/Forums/Topic579917-338-1.aspx
ROT13 ref http://en.wikipedia.org/wiki/ROT13
*/
CREATE FUNCTION dbo.ufn_ROT13 (@inputvar varchar(128))
RETURNS varchar(128)
AS
/*
declare @inputvar varchar(128)
set @inputvar = 'abcdefghijklmnopqrstuvwxyz'
select @inputvar = @inputvar + upper(@inputvar)...
October 3, 2008 at 12:38 am
mtassin (10/2/2008)
Yes this is the SQL 2005 forum. But... what I'm working on needs to run on...
October 2, 2008 at 2:03 pm
As I've read from our "SQL Obi-wan Kenobis" (Jeff Moden & Matt Miller 😉 ) this would be a typical case to use a CLR module.
Don't use the xp,...
October 2, 2008 at 1:50 pm
Your problem is you use
NestedSel.*
This part already contains a mkt_rate column.
You generate a new mkt_rate column right next using
mkt_rate =...
October 2, 2008 at 1:03 am
Nice ... the N-th datetime solutions payback time :hehe:
Just for correctness ...
can you elaborate and split your bigint into the date part and the timepart ?
1196100822809
1196 = NoDays
10= HH
08 =...
October 2, 2008 at 12:42 am
how about this:
Declare @mybigint bigint
set @mybigint =
convert(bigint,replace(replace(replace(replace(convert(char(23), getdate(), 121),'-',''),':',''),'.',''),' ',''))
print @mybigint
declare @mychar char(23)
Select @mychar = convert(char(23), @mybigint)
Select @mychar = substring(@mychar,1,4) + '-' + substring(@mychar,5,2) + '-' +...
October 1, 2008 at 3:09 am
You could add new filegroups and move your data to the appropriate filegroup by moving the clustering indexes.
Also keep in mind you may also have to move non clustering...
September 29, 2008 at 2:17 pm
I haven't performed it on a replicated database.
Keep in mind, you can only shrink a log file up to the 'last' active chunk it uses.
Maybe you'll have redo the shrink...
September 29, 2008 at 2:07 pm
Viewing 15 posts - 4,441 through 4,455 (of 7,496 total)