Viewing 15 posts - 9,151 through 9,165 (of 9,208 total)
some brilliant links and advice there, way to go guys 😀
July 14, 2008 at 10:01 am
this shrinking malarky has been done to death all over the forum:D
good job cos i learnt something new 😉
July 14, 2008 at 10:00 am
from memory, (forgive the pun) Windows 2003 server Enterprise shouldnt need a /PAE switch.
July 14, 2008 at 9:56 am
GilaMonster (7/14/2008)
ltoso (7/11/2008)
There should be a firewall. A web-facng server without a firewall is just asking for various forms of trouble.
that's the thing that worried me, how can public ip's...
July 14, 2008 at 9:53 am
check this link
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1721211&SiteID=1
it may be of some use
July 13, 2008 at 3:49 pm
are you sure you wanteed to audit all tables, that is quite an overhead to place on the database.
July 13, 2008 at 3:41 pm
installing sql2005 express should be no more than if you were installing another sql2000 instance.
Install a named instance and then remove it when you're done if you want to
July 13, 2008 at 7:21 am
TRACEY (7/12/2008)
How did you get 129
i'm assuming he got it from here
TRACEY (7/12/2008)
Trying to determine what the measurements are in profiler in MG and GIG
Divide by...
July 13, 2008 at 7:16 am
Mani Singh (7/12/2008)
you need to ensure that the folder structure and the drive letter are kept the same.
especially the folder permissions, that applies to SQL whether clustered or not
July 13, 2008 at 6:46 am
DKG (7/12/2008)
As per my understanding log file contains uncommitted transactions only, the transaction which is already committed has gone to...
July 13, 2008 at 6:44 am
are you using redundant HBA's? It would be advisable
July 12, 2008 at 2:58 pm
change this
create proc procname
@subject1 int,
@subject2 int,
@subject3 int,
@result int output
as
set @result = @subject1+@subject2+@subject3
to this
create proc procname
@subject1 int,
@subject2 int,
@subject3 int,
as
declare @result int
set @result = @subject1+@subject2+@subject3
it will only expect 3...
July 12, 2008 at 2:47 pm
are you using a static or dynamic IP address for the windows 2003 server
July 12, 2008 at 1:08 pm
the [] are commonly used to negate SQL keywords.
say you had a column in a table called object_id, to reference it as a column and not a keyword is like...
July 12, 2008 at 5:12 am
this link covers logon triggers
http://technet.microsoft.com/en-us/library/bb326598.aspx
you could have the trigger check the client_host event data using the eventdata function for a known set of addresses and deny logon that way!
of course...
July 12, 2008 at 3:40 am
Viewing 15 posts - 9,151 through 9,165 (of 9,208 total)