Viewing 15 posts - 1,981 through 1,995 (of 5,103 total)
Like I already said!!!
CTE, ROW_NUMBER(), CLR and Try...Catch *ARE* available even in 80 compatibility mode.
There are some DMV that are *NOT* usable in 80 but other than that language related...
June 27, 2007 at 10:18 am
On the Connect Site :
https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=175549
MS stated that this behaviour is *by design* and that setting a log file MAXSIZE to UNLIMITED will make it 2TB which is the Max Log...
June 27, 2007 at 8:38 am
>>.. it sure seems like it'll make a hotspot and it sure seems like you'd be in a world of hurt if any GetNextID attempt done in a long winded...
June 27, 2007 at 8:01 am
Sergiy
>>Why not use mirroring with multiple databases<<
It could potentially failover a single database out of a group and that is a problem!!!
*NOT* recomemeded.
Replication, for your information can run a...
June 27, 2007 at 7:51 am
Jeff,
The First problem with mirroring is that the destination DB is *Not* usable ( unless you create snapshots which is another kludge )
Mirroring *in my opinion* is a good choice...
June 27, 2007 at 7:45 am
apparently your update storedprocedure is not being called with the correct calling convention. I don't know exactly what the reason is... something/someone must have change the article definition etc... but...
June 26, 2007 at 4:20 pm
try:
update d set intid= data.rnumb
(SELECT ROW_NUMBER() OVER (ORDER BY rno,rdata ASC) AS rnumb , cm, postamp
FROM po poo (nolock)
where poo.cm = 115 and poo.cmdesc like 'F40%') data
inner...
June 26, 2007 at 4:13 pm
Your "guess" is wrong again! We are *not* using mirroring. If our Primary site goes down we move our clients to the replicas! Simple as that. Meanwhile we use replicas...
June 26, 2007 at 3:57 pm
Well not really.
The compatibility level affects several "internal" features but not all SQL 2005 features are lost you can still use CTE row_number etc ...
If you need to know...
June 26, 2007 at 3:49 pm
Is that number represented as a varchar ?
If yes then
update set col = '1' + col
where left(col,3) = '451'
if not then cast it:
update set col =...
June 26, 2007 at 8:22 am
Jeff, I am sorry if I missinterpreted your intentions.
There are many cases in which may things that seemed "normal" in non-replicated databases must be changed when replication is in...
June 26, 2007 at 8:13 am
David was spot on. When you fail over the software that you use must be able to function exactly as it was when connected to the primary.
The "not for replication"...
June 26, 2007 at 8:06 am
Once again IDENTITY columns *are* problematic in replicated environment with failover scenarios and there are *a lot* of tricks, kludges and workarounds to deal with the problem. Sequence TABLES is...
June 25, 2007 at 3:45 pm
Viewing 15 posts - 1,981 through 1,995 (of 5,103 total)