Viewing 15 posts - 4,756 through 4,770 (of 7,429 total)
None that I am aware of but simple mode is designed to keep the transaction log for all logged transactions until a backup that will truncate the log is performed....
October 7, 2002 at 3:50 am
Sorry, I now have an example based on what you are doing. Try this
CREATE PROCEDURE usp_InsertAnswersAboutThem
@TableName varchar(100),
@ColumnName varchar(100),
@MemberID int,
@AnswerID int
AS
DECLARE @FindMember nvarchar (2000)
DECLARE @FindAnswer nvarchar...
October 7, 2002 at 3:42 am
That would be correct as if any one of the subqueires where clause is not met no value is returned therefore it gives you null. Do the ISNULL on the...
October 6, 2002 at 11:08 am
It will be because of these two lines.
IF (SELECT @Findmember) > 0
IF (SELECT @FindAnswer) > 0
You will need to use sp_executesql with an output variable to get the values of...
October 5, 2002 at 10:52 pm
Use a case statement in your query
CASE ColEnd WHEN '12/30/5000' THEN '' ELSE CONVERT(VARCHAR,ColEnd,101) END AS ColEnd
Then if the values is 12/30/5000 you will see nothing otherwise the date outputs.
"Don't...
October 5, 2002 at 11:10 am
I would try reinstalling just the client utilities instead of whole server first.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
October 4, 2002 at 7:05 pm
We do this will an Oracle database. What we do is in our our DTS package we define the Oracle side with a query to qurery the last modified date...
October 4, 2002 at 7:03 pm
The information is stored in syslogins or sysusers (sorry no SQL Server here to double check). You can query the [name] column for the user ot the [id] column if...
October 4, 2002 at 6:54 pm
I do it but generally for things I don't want people to know are there which are for me maintainence items. I have done for a few sp's that are...
October 4, 2002 at 6:43 pm
First the teamed NICs should not be the cause as it should just be a total packet processing thing, connection should not open multiple times. Now as for closing I...
October 4, 2002 at 6:37 pm
The key to output a single quote is put two single quotes in the input such as ' would be submitted as '''' and '' single quotes submitted as ''''''.
"Don't...
October 4, 2002 at 6:18 pm
It is not based on xtype but instead status column. When you use sp_MSmarksystem to make the table a system table you will find the only column updated is status...
October 4, 2002 at 6:14 pm
You can also export the data from sysdtspackages and import to the other. Or you can do a backup and restore to another name (like tmpRestore) then insert to the...
October 4, 2002 at 6:04 pm
To the best of my knowledge, if they used sp_MSmarksystem to make it a system table or altering the status of the table in the sysobjects table will be an...
October 4, 2002 at 5:55 am
INSERT is a better option as opposed to SELECT INTO which does have known locking issues. Now as for your answer it would help to see you current code logic...
October 4, 2002 at 3:43 am
Viewing 15 posts - 4,756 through 4,770 (of 7,429 total)