Viewing 15 posts - 691 through 705 (of 1,539 total)
for a starter this query should help u.
select * from sys.sysprocesses where blocked0
July 16, 2009 at 10:10 pm
your case statement looks incorrect. can you post table structure, sample data and expected output pls.
This URL will help you in posting these.
http://www.sqlservercentral.com/articles/Best+Practices/61537
July 16, 2009 at 6:14 am
john_arshi (7/15/2009)
yes i can restore database....i have database backup but that not restore please help me
your two statements are contradicting each other. can u explain more on what you're doing?
also...
July 16, 2009 at 6:08 am
Full backups are sent directly to the tape and the tran log backups are taken on disk and then copied to tape with retention period of a week i guess.
otherwise...
July 15, 2009 at 10:30 am
log_reuse_wait_descr column states what is preventing log truncation. In your case, its Replication which means there is a unfinished replication. This may happen if you've restored this database from a...
July 15, 2009 at 10:15 am
mmartin (7/15/2009)
July 15, 2009 at 10:07 am
Ian Scarlett (7/15/2009)
What's the point of keeping the history much beyond 2 weeks?
...
...
You can still restore manually without the history in these tables.
I think i should delete more of it....
July 15, 2009 at 10:03 am
vinuvt (7/15/2009)
1.Any database changes that happens in server 1 databases must be replicated to Server 2 and vice-versa.
2.People from L1 connect to Server 1 only...
July 15, 2009 at 9:44 am
yeah, i did delete data keeping only 3 months.. seems it's improved but still not accetable.. there are around 10 user databases and tran log backups happens every 10 mins.....
July 15, 2009 at 9:30 am
ramyours2003 (7/15/2009)
how to take backup of a database from one server to another ?
use network share.
or how to movethe backup files from one server to another
copy/paste.
July 15, 2009 at 3:48 am
Sourav Mukherjee (7/14/2009)
What is the table or command I need to type (and where) to check for the number of transactions and the transaction related details are waiting to be...
July 14, 2009 at 10:16 am
Am glad it worked 🙂
July 14, 2009 at 10:13 am
Jagger (7/14/2009)
It doesn't work.What I did?
Select left('zip and city',charindex(' ',''zip and city'')-1) as ZIP,
right(''zip and city'',len(''zip and city'')-charindex(' ',''zip and city''))as City
into NewCustomer
from customer
why?
because you havent mentioned your...
July 14, 2009 at 10:03 am
--1. create the table
create table customer
(
[zip and city] varchar (50)
)
--2. insert sample data
insert into customer
select '60601 Chicago'
union
select '60602 Chicago'
union
select '10292 New York'
--3. parse and insert data to new table
select...
July 14, 2009 at 9:59 am
Thanks for the feedback 🙂
July 14, 2009 at 9:44 am
Viewing 15 posts - 691 through 705 (of 1,539 total)