Viewing 15 posts - 31 through 45 (of 49 total)
Good article,
I agree with the post as far internal systems are concerned, far too many people place far too much importance on their own 'babies' be that software, databases or...
July 30, 2007 at 9:18 am
Thanks bnordberg, thats just what I was looking for!
July 26, 2007 at 9:41 am
I found passing bulk data as XML (text) to a stored procedure as an ntext parameter, then use OPENXML to pass data into table variables\temp tables much easier than creating your own sql...
July 25, 2007 at 7:40 am
Thanks for the reply, I dug a little further and found the KB article related to this problem. I was adding the correct flag but also require the server name...
June 13, 2007 at 8:06 am
Yeah I started using that to give me a transactions per day, but after a trawl through numerous web pages and groups discovered this wouldn't be particularly accurate.
Thanks
Chris
October 10, 2006 at 9:38 am
Thanks David,
I think I'll go for the PRO SQL Server 2005 book for starters, then go for individual books you suggested as an when needed.
I have the Inside SQL 7.0...
August 23, 2006 at 1:39 am
I think you'll find that the author wasn't comparing Bill Gates with Hitler but emphasising the sometimes hysterical condemnation of the Slashdot crowd of people like Bill Gates.
It is not good...
February 22, 2006 at 2:02 am
Give this a go
select rsn.MemberID,
b.ResJoinID,
b.Reason,
b.ChangeDate
from SAVA.SAVA_SAVRSN rsn
inner join
(
select distinct
a.ResJoinID,
c.Reason,
(
select max(ChangeDate)
from SAVA.SAVA_SAVDJN
where ResJoinID = a.ResJoinID
  as ChangeDate
from SAVA.SAVA_SAVDJN a
where a.ResJoinID = 2
 
May 18, 2005 at 2:53 am
Good grief, I didn't expect that!
My original post was not intended say theory (or fundamentals) are not important but that the question itself was poorly worded, and in the wrong...
March 15, 2005 at 1:51 am
Is it possible we can have all questions and answers in English please, or atleast in a language that google translator can handle. 🙂
Thank you
March 11, 2005 at 2:00 am
Is the transaction log backed up to a different physical disk or even better to an independent storage area (NAS, tape for instance)? If this is so once you have...
September 29, 2004 at 2:12 am
Create an operator (SQL Server Agent\Operators). Under the Notifications tab you should see a number of Alerts relating to replication.
These alerts can be sent as Emails, Pager or Net Send.
Cheers
Chris
September 23, 2004 at 8:18 am
I wouldn't recommend autoshrink as this could happen at inconvenient times of the day, killing performance. You could setup a SQL Agent job to run DBCC SHRINKFILE at a period...
September 21, 2004 at 2:01 am
Apart from checking EM\Management\SQL Server Logs and/or EventViewer\Application Log, you could also configure notifications for system alerts (or your own custom alerts). You can do this via EM\Management\SQL Server Agent\Alerts
Cheers
June 23, 2004 at 2:15 am
Viewing 15 posts - 31 through 45 (of 49 total)