Viewing 15 posts - 721 through 735 (of 824 total)
That won't work because instead of -2345.00 it should be -23.45 at least according to what the OP said. Of course, having just said that I realize that as long...
August 26, 2004 at 10:04 am
That's a good point, I was basically assuming that all the other restriction clauses used in generating the SP's result set would be included in the INSERT, but I didn't...
August 26, 2004 at 8:24 am
Since you are doing DELETEs the Bulk-logged model will not help. The only operations that benefit from that recovery model are BCP and BULK INSERTs.
August 24, 2004 at 9:50 pm
Setting the recovery mode to Simple will have no effect on performance since the DELETEs are still fully logged.
No, you can't place the log file on a NULL device SQL...
August 24, 2004 at 2:08 pm
The simplest method of moving DTS packages from one server to another is to open the package in designer and under the "Package" menu select "Save As" you will be able...
August 24, 2004 at 1:59 pm
I have to say that after reading some of the comments posted at those weblogs I feel dummer for having read them Those...
August 24, 2004 at 1:28 pm
Well it's ugly but it works assuming that the right two digits are always supposed to represent cents.
declare @vchar varchar(10),
@Dollars varchar(10),
@Cents varchar(10),
@Amt varchar(11),
@Money money
set @vchar = '-0001234'
set @dollars = (left(@vchar,...
August 24, 2004 at 12:50 pm
Is your new instance running at the same release level (SP and Hotfixes) as the original?
August 24, 2004 at 12:29 pm
For SQL Server 2000 you must be sysadmin to run Profiler. There are several reasons for this, Profiler can show a great deal of information about the data and the...
August 24, 2004 at 12:25 pm
I usually use Query Analyzer's Object Browser, find the view (or any other object) right click on it and select one of the scripting options available there. You can also...
August 24, 2004 at 12:16 pm
It doesn't make much sense to me, but I'm not familiar with your system and its requirements... Based on what you told me I would just throw in a simple...
August 24, 2004 at 12:10 pm
Actually that might make it real simple. But before I can tell I need to ask a few more questions:
Do you want the audit records to be written only when...
August 24, 2004 at 10:17 am
Do you want to write the record only if a record CC_Type = 50 appears in the result of the stored procedure or do you want the record written if...
August 23, 2004 at 3:57 pm
Sure you can. You need to have the appropriate Oracle ODBC driver installed on your server, configure your Linked Server and make sure that RPC is checked on the Server...
August 19, 2004 at 12:22 pm
...just to expand on rockmoose's comment. IDENTITY columns in and of themselves are not meant to ensure uniquness, but by not reseeding the value and using a unique constraint (or...
August 17, 2004 at 11:38 pm
Viewing 15 posts - 721 through 735 (of 824 total)