Viewing 15 posts - 16 through 30 (of 183 total)
Simple Recovery it is then...
The issue is that occassionaly developers and other users will load data into database without bulk load or other methods and create large logs. This...
October 15, 2009 at 11:06 am
Interesting.... not sure as it seems like it should perform the same action. Per books online I saw this...
A sort column can be specified as a name or column...
September 16, 2009 at 8:43 am
Glad the text driver worked, as I said I knew that worked but I thought I had also done it with the excel driver.
You should be able...
September 15, 2009 at 7:24 am
I am getting the same error. I thought I had done this before, but it may have been a text/csv data source versus xls. You may be able to...
September 14, 2009 at 10:54 am
In SSIS you should have a connection manager to your XLS document. Double click on that connection manager to open it. Click adavanced on the left hand colum,...
September 11, 2009 at 10:33 am
Look at the data type for the SSIS component (source output) to see the data type. If you just used the default it probably read the xls data type...
September 11, 2009 at 10:11 am
Interesting question, and based on the intial response I am interested in what others say about this because their numbers are higher than i would have guess (I guess I...
September 10, 2009 at 10:45 am
I dont believe you can have case insensitive passwords for SQL 2K5. If this is for an application with which you have control of the code then you should...
August 14, 2009 at 1:23 pm
Use RAISERROR command. There is an option for LOG.
Per BOL:
OPTION LOG
Logs the error in the error log and the application log for the instance of the Microsoft...
July 14, 2009 at 10:51 am
Good catch. I agree if its a divisional result then this will pose issues of rounding, percision, etc which will have to be dealt with. I assumed it...
June 30, 2009 at 12:22 pm
I have seen this done typically in two ways (although I have never done it and can't speak to which is best).
Option 1: Build a table with a...
June 30, 2009 at 12:15 pm
You should be able to use a case statment in your selct. Something similar to...
SELECT...
CASE KeySORNumber
WHEN '2/2687' THEN 1
ELSE 0 END AS [Column Name],
....
FROM...
June 30, 2009 at 10:00 am
The issue is likely with your insert statement. A piece of data in the statement exceeds the column size. So you might be trying to put 40 characters...
June 30, 2009 at 9:56 am
In the field you should be able to simply concatenate the data. So something like...
= "coverage type of B" & Sum(IIF(Fields!Coverage_Type.Value = "B",1,0))
May 22, 2009 at 1:03 pm
Thanks. Looks like this tool should work based on the documentation.
May 21, 2009 at 10:27 am
Viewing 15 posts - 16 through 30 (of 183 total)