Viewing 15 posts - 2,446 through 2,460 (of 3,008 total)
It is completely normal for SQL Server to consume all the memory on the box.
More than likely, the reason for the freeze is the other application running on the box....
February 26, 2008 at 1:09 pm
A slightly cynical point of view with a lot of truth and insight about human nature.
"...Upon this a question arises: whether it be better to be loved than feared or...
February 26, 2008 at 1:04 pm
A complete list of servers would be handy.
Make sure you have sysadmin access to all the servers.
A list of the databases on each server, what they are used for, and...
February 26, 2008 at 10:02 am
Why can't you run a full backup?
February 25, 2008 at 10:14 am
Hans Munkwitz (2/25/2008)
February 25, 2008 at 8:41 am
If they are currently working, why not just continue to run the DTS packages under SQL 2005?
DTS 2000 runtime is included with SQL Server 2005 to run DTS 2000 packages...
February 21, 2008 at 9:46 pm
"Table-valued parameters are a new parameter type in SQL Server 2008. Table-valued parameters are declared by using user-defined table types. You can use table-valued parameters to send multiple rows of...
February 21, 2008 at 6:09 pm
Of course, there is probably a check or FK constraint on the column already to make sure it is a valid year, but it doesn't hurt to verify that. 🙂
February 20, 2008 at 2:04 pm
You may want something like this to make sure the number is a valid SQL Server year.
select case when XYX between 1753 and 9999 then dateadd(yy,XYX-1900,0) else null end
February 20, 2008 at 12:12 pm
You can't change the maint plan file name.
It's fairly easy to have your restore procedure do a directory comand from xp_cmdshell to find the latest file name to use.
February 19, 2008 at 3:04 pm
This is a better way to do the WHERE clause to select data for the current year because:
1. It does not have to apply a function to each row of...
February 19, 2008 at 10:02 am
You might try creating the index I suggested as non-unique to cover the query. It lets SQL Server treat the index like a table without a bookmark lookup.
As an...
February 18, 2008 at 2:48 pm
I would go with a check constraint on a column with unique constraint to make sure there can only be one row.
Add a instead of delete trigger to prevent deleting...
February 18, 2008 at 1:51 pm
Here are a couple of suggestions you could try.
Change the query in your fucntion to this. I think is is also logically better, because it prevents the possibility of...
February 18, 2008 at 1:26 pm
DHeath (2/15/2008)
Not sure if this is asking too much but are those scripts something you have available and willing to share or are they something that i would need...
February 15, 2008 at 11:06 pm
Viewing 15 posts - 2,446 through 2,460 (of 3,008 total)