Viewing 15 posts - 841 through 855 (of 1,539 total)
Sourav Mukherjee (7/1/2009)
One of my friends had to update the changeid of one user(userid =1000) to 100. But while updating he forgot to include
"begin tran .....
July 1, 2009 at 10:51 pm
I dont think you can control individual log files. log files are written in a round-robin fashion. when one file gets full, sql server moves to another file for logging...
July 1, 2009 at 10:46 pm
Right, In Bulk logged mode, bulk logged transactions are minimally logged. all pages which are modified by bulk logged operations are marked. During log backup all extents containing such pages...
July 1, 2009 at 10:41 pm
yep, they do but in oracle val1 can be used by table1, val1+1 can be used by table2, val1+3 can be used by table3 and so on...
July 1, 2009 at 11:18 am
I think he is referring to sequence in oracle which is an object at a database level to generate sequence numbers and is used just like our identity(which is used...
July 1, 2009 at 11:09 am
not sequential numbers but may be guid can be used which is unique every time it's generated. but they look weird:w00t:
July 1, 2009 at 11:00 am
do you want something like this?
declare @nam varchar(30)
set @nam='pradeep singh'
select left(@nam, charindex(' ',@nam)-1)
select right(@nam, len(@nam)-charindex(' ',@nam))
OUTPUT
------------
------------------------------
pradeep
(1 row(s) affected)
------------------------------
singh
(1 row(s) affected)
July 1, 2009 at 9:33 am
These articles should help you out in finding the culprits:
July 1, 2009 at 9:16 am
I'd got similar issue once and resolved it by changing the authentication mode to windows negotiate.
See if that works for you case.
July 1, 2009 at 9:14 am
Thanks Gail for providing deep insight into the issue.
I did go through the article you mentioned and another one
http://www.sqlskills.com/BLOGS/PAUL/post/CHECKDB-From-Every-Angle-Consistency-Checking-Options-for-a-VLDB.aspx
which did provide very useful information on how to reduce...
July 1, 2009 at 9:04 am
may be the package tries to backup transaction logs of the databases which are in simple recovery mode...
July 1, 2009 at 8:59 am
We use dbspi along with hp openview(OVSD/OVSC) and we do get timely notifications of any issues(which is good enough), however for this one, we didnot get any ticket as the...
July 1, 2009 at 8:50 am
and yes, you should also have a login id and password to login to the target server with appropriate rights.:-P
Edit :- Oops, Grant already mentioned abt privilages...:hehe:
July 1, 2009 at 7:40 am
Thanks Gail.
Yes, we had discussions with the SAN team and they confirmed there is no such issue at the moment.
I also told them to notify such issues to the database...
July 1, 2009 at 7:38 am
Andrew Collins (7/1/2009)
July 1, 2009 at 7:30 am
Viewing 15 posts - 841 through 855 (of 1,539 total)