Viewing 15 posts - 6,571 through 6,585 (of 7,429 total)
Then try
UPDATE tblX SET colV = LEFT(colV, LEN(colV) - 2)
since we know it is 2 spaces on the end. I will look into the other issue though.
"Don't roll your eyes...
April 2, 2002 at 3:33 pm
Answer one is no, not like you are speaking of, but you could schedule with agent to run the DTS pull every so often. Replication requires the server to be...
April 2, 2002 at 3:07 pm
See the article "Copying DTS Packages To a Different Server" http://www.sqlservercentral.com/columnists/awarren/copyingdtspackagestoadifferentserver.asp
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 2, 2002 at 3:05 pm
Ok so you found a work around with issues. What do you mean though they cannot be rtrimed off. Can you not run
UPDATE tblX SET colV = RTRIM(colV)
"Don't roll your...
April 2, 2002 at 3:03 pm
I believe you can edit the file directly.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 2, 2002 at 3:01 pm
This should do the trick.
The following is from MS Knowledge Base article at http://support.microsoft.com/default.aspx?scid=kb;en-us;Q195759
Run SQL Server 7.0 Setup from the original product CD. Doing so will not reinstall SQL Server...
April 2, 2002 at 2:57 pm
Is you login a SQL login, if so then it does exist on the other server with permission (I assume based on what you said)? If so the use profiler...
April 2, 2002 at 2:53 pm
Try this
DECLARE @filedate VARCHAR(10)
SET @filedate = SUBSTRING(@files,3,2) + '/' + SUBSTRING(@files,5,2) + '/' + SUBSTRING(@files,7,4)
And test
PRINT @filedate
You should get MM/DD/YYYY, if not what do you get?
If you do then use...
April 2, 2002 at 2:50 pm
Just email it to me. I will look at it tomorrow.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 2, 2002 at 2:45 pm
Can you post the code snippet for your connection? Also, ADO has always worked better for me using the SQLOLEDB provider instead of ODBC.
"Don't roll your eyes at me. I...
April 2, 2002 at 2:04 pm
How are you defining the connection authentication method for the linked server?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 2, 2002 at 2:00 pm
Can you post the DDL of the table and the first few lines of data so I can see. Also what does the error state?
"Don't roll your eyes at me....
April 2, 2002 at 1:59 pm
Yes, it is the registry entries that cause this. And once the file is in use the OS won't let it go until process using it stops. I have not...
April 2, 2002 at 1:56 pm
SQLMail does require a MAPI connection. However, I am playing with notes to see if I can build a stored procedure to do the same. We have you direct SMTP...
April 2, 2002 at 7:51 am
No there is no comparison of the two as to any improvements over the other. It is kind of like SUB versus FUNCTION in VB, in many case either can...
April 2, 2002 at 7:46 am
Viewing 15 posts - 6,571 through 6,585 (of 7,429 total)