Viewing 15 posts - 736 through 750 (of 1,539 total)
Use replace function.
select replace ('PQ19188PFAA','H','')
July 10, 2009 at 10:43 am
--create the table
create table logspace
(
dbName varchar(255),
logSize decimal(18,5),
logSpaceUsed decimal(18,5),
status int
)
-- create the procedure
create procedure logsp as
dbcc sqlperf(logspace)
--put all these into job that's scheduled to run every 5 mins or so..
truncate...
July 10, 2009 at 10:12 am
SQL ORACLE (7/10/2009)
License is another issue when creating additional instance.
I thought sql server licensing is based on number of CPUs AND/OR number of clients AND/OR number of devices...
Ref http://www.microsoft.com/Sqlserver/2005/en/us/licensing.aspx
We...
July 10, 2009 at 9:45 am
goparaju.chandu (7/10/2009)
Hi all,This is the SQl server Configuration error --> Connection to target machine. could not not be made in a timely fashion.
Restart the service Windows Management Instrumentation
Ref:- http://sql-articles.com/blogs/connection-to-the-target-machine-could-not-be-made-in-a-timely-fashion-sscm/
July 10, 2009 at 9:36 am
On very large tables, updating the table in batches is the best way to avoid blockings. I'd go with Lowell's suggestion to update your table in batches. You can definately...
July 10, 2009 at 9:34 am
am (7/10/2009)
July 10, 2009 at 9:30 am
S Hodkinson (7/8/2009)
July 10, 2009 at 12:58 am
query backupset table in the msdb to see if backups are happening. Also, are you taking transaction log backups too using the maint plans? there may be some databases which...
July 10, 2009 at 12:50 am
Glad it worked 🙂
there must be some setting(s) but i'm unaware. I'd seen a similar situation in the past and this trick worked. sp_repldone too wasn't helping a bit.
July 10, 2009 at 12:44 am
sanderstad (7/10/2009)
The weird thing is that the logfile grows from 100MB to 45GB overnight.
Some activity is happening at night that's consuming heavy log file space? I suspect it's index rebuilding?...
July 10, 2009 at 12:36 am
Why dont use plain xp_cmdshell instead to copy the backups to different location?
These URL's will tell you how to enable this command(if not already enabled). Use plain DOS command to...
July 10, 2009 at 12:28 am
Doug Elwood (7/9/2009)
sp_repldone does nothing - since the database is not replicated, it only generates an error.Any other suggestions?
This happens usually when u restore replicated database. Try setting up replcation...
July 10, 2009 at 12:25 am
BOL=Books Online. It is the sql help book that is installed with the sql server for all editions except express edition. It's installed locally and is the best place to...
July 9, 2009 at 9:04 am
since the amount of data is very small, snapshot replication would suit you i guess as it would not pose much overhead in mainining it.
If you compare this with sending...
July 9, 2009 at 9:01 am
U said you dont hv problems getting microsoft products. I'd suggest install sql server developer edition and start learning by yourself to get yourself to some beginner level.
You can...
July 9, 2009 at 8:43 am
Viewing 15 posts - 736 through 750 (of 1,539 total)