Viewing 15 posts - 4,081 through 4,095 (of 7,429 total)
Try sp_resetstatus first to remove the suspect marker and see what happens. Once set that is the only right way to remove. Then let us know if still an issue.
...
December 2, 2002 at 6:59 am
Walk us thru what your are trying to do so we can offer a solution for your needs.
December 2, 2002 at 6:12 am
You most likely have the Auto Close option set on your databases. Open EM and right click each DB and select properties. It will be found in the bottom section...
December 2, 2002 at 6:10 am
It will reinstall new copies of the system databases. For safety I usually copy or move all existing databases to another location. Then reinstall, stop sql. Move the files back,...
December 2, 2002 at 6:00 am
Fortunately this happened only once to me and that went away. But the solution Brian states is a wonderfull thing. The only concern you need to be aware or if...
December 2, 2002 at 5:49 am
I get no errors when I create a table like so
create table Application_Function (
function_id int not null,
function_name varchar(200) not null,
graphic_name varchar(200) not null,
application_code varchar(50) not null,
parent_function_id int not null
)
Can you...
December 2, 2002 at 5:39 am
I noticed this today. One question, is it based on votes? If so then figures would be better if more people voted. Or, is it based on viewers (that would...
December 2, 2002 at 5:17 am
Depedning on the FK constraint I rarely use FKs to enforce itegrity. Usuall they are for silly things like a support table of options with a range or values 1-n....
December 2, 2002 at 5:16 am
Hope those of you who wrote here noticed this thread as well.
December 2, 2002 at 5:09 am
I would first like to know what the VB app may be doinhg. My concern is what if you fire multiple times. Will this cause error, data integrity problems or...
December 2, 2002 at 5:00 am
Yeah you really have to predict what could happen and test if that condition would be met then handle your way. Otherwise it will end the process that cause the...
December 2, 2002 at 4:50 am
What version of SQL and what Service Pack level?
Also, what are the jobs doing that so many start at one time?
And check here and see if possibly related to your...
December 2, 2002 at 4:27 am
quote:
Here is an inelegant but straight forward way we use of creating a quick backup of a table in the same database:select...
December 2, 2002 at 4:04 am
Have you change the account or the package in anyway recently?
December 1, 2002 at 8:53 pm
IGNORE_DUP_ROW on index creation (not in SQL Server)
It was but removed. From BOL
quote:
No longer supported. Using either ALLOW_DUP_ROW or IGNORE_DUP_ROW in the...
December 1, 2002 at 8:52 pm
Viewing 15 posts - 4,081 through 4,095 (of 7,429 total)