Viewing 15 posts - 151 through 165 (of 214 total)
I didn't realise that you might have multiple entries per row.
There might be a set based solution but I cannot think of it at present - something may come to...
August 21, 2007 at 6:06 am
I'm sure others would agree with me but don't use a cursor.
I would load the rows into a load table and then insert all of the 'D' values from the...
August 20, 2007 at 10:15 am
In Query Analyser, the results are limited, by default, to 256 characters.
Select Tools, Options.
In the Results Tab, change Maximum Characters per column to the required value.
Not sure about IIS.
J
August 17, 2007 at 9:49 am
Is this the only step in the DTS package? If so, why not start the bat file using a specific step in a job using the Operating System Command (CmdExec)...
August 16, 2007 at 1:52 am
I think you are probably right in adding a new index with the columns in the order that I want. The existing PK is clustered so the new index could...
August 15, 2007 at 9:09 am
Can you create the file E:\JOBS\Users.txt on your server and then the scheduled job?
J
August 15, 2007 at 5:06 am
Where does SQL Server itself reside? The data is on your local machine in the E:\ - when SQL Agent runs the job it will run on the machine with...
August 14, 2007 at 6:53 am
As the execution plans were different between the sp and the native code, it is likely that the procedure was compiled some time ago and since then there has been...
August 14, 2007 at 5:22 am
You live and learn.
I used the table option because I was bulk loading from an external application (SAS) and I couldn't see any way from the external app to lock...
August 14, 2007 at 4:48 am
Have you considered setting the 'table lock on bulk load' option for the table?
exec sp_tableoption <tablename>, 'table lock on bulk load', 'ON'
Have a look at BOL - it suggests...
August 14, 2007 at 2:10 am
Have a look at this: http://www.sqldts.com/246.aspx
It might be as simple as setting the execution status of the current step to success:
Main = DTSTaskExecResult_Success
You have yours set to...
July 31, 2007 at 6:32 am
Can you supply the first few rows from the file and the ddl for the destination table? Your BCp statement still references a .xls file - is this the original...
July 31, 2007 at 5:40 am
What does the ouptut from the stored proc look like in Query Analyser? Is it a single result set of 3 rows or 3 result sets of a single row...
July 30, 2007 at 7:00 am
There is no built in functionality within SQL Server to achieve this. You will have to build something yourself.
For example, you could write a function where you pass in the...
July 25, 2007 at 4:46 am
One way to ensure the sequence of rows, is to have an identity column on the load table. You can order by this column which will ensure that the sequence...
July 25, 2007 at 2:52 am
Viewing 15 posts - 151 through 165 (of 214 total)