Viewing 15 posts - 31 through 45 (of 80 total)
Hello,
When requesting a date range, one must remember the time part of the date.
So whenever requesting a date range use code like this :
select *
from tablexyz
where...
July 7, 2008 at 2:06 pm
Hello,
You should also check the permissions on the data base and the tables involved. If the .Net is accessing the data via a system login or ODBC definition it...
July 7, 2008 at 1:59 pm
[font="Arial"]Hello,
In DTS when you are sending data it defaults any varchar field to 8000 in length. Why? Who in the world knows what Microsoft was thinking. However,...
July 7, 2008 at 1:41 pm
[font="Arial"]
A little more clues are :
A varchar(8000) is the default value you are prompted with in DTS. That doesn't mean you have to use all of that.
Typically text files...
June 25, 2008 at 3:24 pm
[font="Arial"]
Hello,
This error :
Could not get the data of the row from the OLE DB provider 'SQLOLEDB'.
[OLE/DB provider returned message: Row handle referred to a deleted row or a row...
June 19, 2008 at 2:13 pm
[font="Arial"]
For a 40 million row process, I would create a single column table of the unique customer names/id's. Create a clustered key of those customer names/id's and...
June 19, 2008 at 1:53 pm
[font="Arial"]
Hello,
I don't have a solution but I do have a couple comments and questions that might help.
In the UPDATE you are updating ad. It should be the first table...
June 19, 2008 at 1:47 pm
[font="Arial"]
Hello,
If I understand your issue correctly, you have a driver table and a related table.
Let's say:
create table #driverTable
( rowId int identity
columnOne varchar(10) null,
column99 int...
June 19, 2008 at 1:36 pm
[font="Arial"]
Hello,
You could use bcp or DTS for this process. There are more ways to do this process too. But these two are the simplest and some times the...
June 19, 2008 at 1:16 pm
[font="Arial"]
The IsDate function does not support the date format entry in the order you presented it.
-- select ISDATE('13012008')
-- returns 0
Instead you should use some thing like this which all...
June 19, 2008 at 12:56 pm
[font="Arial"]
Hello,
Are you restricted to using bcp? Could you use DTS instead as this would be an almost no brainer there.
If you pull the .fmt file up in an editor,...
June 13, 2008 at 2:26 pm
[font="Arial"]
Hello
There are several ways to go about this problem. However, it would help to know if there are any other fields in T2.
For example, does T2 have an...
June 13, 2008 at 2:13 pm
[font="Arial"]
Hello,
Your post is some what criptic.
If I understand correctly, you want to have a sproc create dynamic SQL into an output file with the extention of .sql on the client...
May 28, 2008 at 2:42 pm
[font="Arial"]
May I suggest use set rowcount 1...for example:
create table tlb_test
( tname varchar(20) null,
tother int null )
insert tlb_test
select 'this', 1 union all
select 'This', 2 union all
select 'this',...
May 20, 2008 at 12:09 pm
[font="Arial"]
Hello,
You should be using the bcp utility to output the data from the table built by the isql programming.
Regards,
Terry
[/font]
May 20, 2008 at 11:57 am
Viewing 15 posts - 31 through 45 (of 80 total)