am trying to import data from an ODBC source using the Datareader but have come accross a problem, can anyone help?
Whenever I try to do a 'SELECT * FROM sometable' I get the following error:
Error at Data Flow Task [DTS.Pipeline]: The output column "notes" (521) has a length that is not...
Sorry but this uses a dreaded cursor to get your results, I'm sure someone will be able to do it without cursors.
DECLARE @ID AS int
DECLARE ID_C CURSOR FOR
SELECT DISTINCT ID FROM Table2
OPEN ID_C
FETCH NEXT FROM ID_C INTO @ID
WHILE @@FETCH_STATUS = 0
BEGIN
DECLARE @employeelist...
This may get you started
DECLARE @employeelist varchar(100)
SELECT @employeelist = ''
SELECT @employeelist = @employeelist + ',' + Cast(name as varchar(10))
FROM Table2 WHERE ID = 1
SELECT @employeelist = REPLACE(SUBSTRING(@employeelist, 2, 100), ' ', '')
print @employeelist
This produces...
We have a very large DTS package which runs without any problems most days but recently the package is hanging on the very first step(see script). Nothing is logged and the system appears to be running normally but the only way to get this step to complete is to reboot.
Does anyone have any...
Ralph
This is yet another link which may be of use:
http://sqlservercentral.com/scripts/contributions/190.asp
I haven't tried this myself so if it works could you let me know?
Try this:
http://support.microsoft.com/default.aspx?scid=kb;en-us;302491
Also try turning off all your virus software during the install.
I have a strange cluster install that will only work if I use the 'B' node as my start point. I don't know why, the two nodes are identical as far I as I...
Thanks for the help.
My problem seems to be that removal of the dlink nic did not complete fully and has left some references to /dev/net1 the second nic on the system.
Does anybody know of a way of removing these manually before I rebuild the kernel.
Thanks
John
I am trying to install a second 3com nic card onto a SCO 5.0.4 system using netconfig.
When I try to Add new hardware the following error is displayed:
No network adapters are installed on the system at the moment.
This may be due to an aborted install/removal of an old dlink card.
Does...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.