Viewing 15 posts - 31,261 through 31,275 (of 39,754 total)
There's a lot of Javascripting here, so I'm not surprised with that.
September 28, 2007 at 10:50 am
Can you let us know what you did? Might help others.
September 28, 2007 at 10:50 am
Send the old and new ones to webmaster and we'll look at it.
September 28, 2007 at 10:48 am
Get rid of the function.
declare @dt datetime
select @dt = dateadd( d, -365, getdate())
update
...
and entrydate < @dt
That gets you a scalar. It's possible that you can't get this to run better...
September 28, 2007 at 10:48 am
Change the login with the SQL Configuration Manager. It will assign the correct permissions.
September 28, 2007 at 10:43 am
As Andrew mentioned, you need one of these:
insert into Table_1
SELECT b.last_name,
b.first_name,
b.City
, null
OR
insert into Table_1 (last_name, first_name, city)
SELECT b.last_name,
b.first_name,
b.City
September 28, 2007 at 10:42 am
I don't believe encryption is time based. I could be missing something, but that's not how I understand the SQL Server 2005 encryption.
How is encryption set up? Is it symmetric,...
September 28, 2007 at 10:41 am
Are you sure that SQL Server accepts Mixed mode connections? Just double check and be sure your IPs are correct. I've had people change them and someone else doesn't realize...
September 28, 2007 at 10:39 am
Here's a few options:
http://blogs.msdn.com/tudortr/archive/2005/11/03/488731.aspx
September 28, 2007 at 10:36 am
It's on the list, but it's a lower priority.
Search now limits by forum, but still won't help with what you are looking for.
September 28, 2007 at 10:31 am
Chris,
Do you mean a new reply? I agree that the front page doesn't do a great job , but I'm not sure the old one showed replies at the top...
September 28, 2007 at 10:30 am
Jason,
I think you have a good plan for now. Look at them on disk as well (defrag there) and then go with your plan.
September 28, 2007 at 10:24 am
Filters Added today!
We'll work on search over time and see what we can come up with.
Steve
September 28, 2007 at 9:52 am
:), note the access rights and then remove them. It's the easiest way to see if someone's using the table.
Or you can set up a trace for access to certain...
September 28, 2007 at 9:50 am
Don't set a lot of alerts. Let them track things and have some metrics ready on what you track. Too many things spike for minutes, like CPU, to alert on....
September 28, 2007 at 9:49 am
Viewing 15 posts - 31,261 through 31,275 (of 39,754 total)