Viewing 15 posts - 1,906 through 1,920 (of 2,009 total)
Unfortunately the SQL String is too long to fit inside 1 Varchar(8000) variable. The statement has to have the ability to handle close to 16000 characters. That's why I broke...
May 18, 2006 at 7:37 am
yeah I'm a bonehead... I was using SET instead of SELECT not that that wopuld make a difference, but I use 1 set of code for wwup to 8000 chars...
May 16, 2006 at 1:08 pm
It has something to do with Veritas/Symantec Backup Exec. See these posts here...
http://www.sql-server-performance.com/forum/topic.asp?TOPIC_ID=3089
May 16, 2006 at 12:20 pm
I would imagine that it would be an install over the current version and would keep all of the users etc. I have not tested this however. You'd want to ...
May 16, 2006 at 7:37 am
From The SQL 2005 Upgrade FAQ...
Q. | How easy is it to migrate from a trial... |
May 16, 2006 at 6:40 am
I'd imagine it's like calling any other stored procedure/query from another datasource. Create an other ODBC conniction via your Sybase ODBC driver.
Then create an execute SQL Task and tyep in...
May 16, 2006 at 6:20 am
you are correct that's why I suggested the for Nali to look at the KB article that deals with which keys needs changed etc. Also The do this is a...
May 12, 2006 at 11:45 am
you want this...
sum(CASE ISNUMERIC(EDI_H_Cost)
WHEN 0
THEN 0
ELSE EDI_H_Cost END)
May 12, 2006 at 10:01 am
Make sure you test this in a test environment!!!
You could attempt this from a batch file using sc commands
something like this
SC [\\SERVERNAME] stop [servicename]
SC config [servicename] obj=[acountname]...
May 11, 2006 at 1:34 pm
If you're getting a driver incapable error just for grins why don't you try running the odbcConf Tool it can be downloaded from microsoft here. I had a problem...
May 11, 2006 at 11:51 am
another option could be to create a computed column and place an index on the computed column to help with performance issues...
Here's a link on how to create a computed...
May 11, 2006 at 8:37 am
you could combine the columns like so... and use this in your where statement... If your date column was called datecreated, and your time column was called timecreated. I'm assuming...
May 11, 2006 at 8:20 am
Yeah I'm not really planning to keep the data. I already have it in my db and I can recreate the data with the tables by rerunning portions of the...
May 11, 2006 at 6:08 am
Theoretically I suppose you could save your DTS job as a vbs file and compile it into and executable. Then you could use the information here http://support.microsoft.com/kb/q137890/ to set it...
May 10, 2006 at 2:24 pm
I've come accross this error with a goodish number of different datasources. Specifically with a postgreSQL db that was setup so that it was case sensative. You could send a...
May 10, 2006 at 2:17 pm
Viewing 15 posts - 1,906 through 1,920 (of 2,009 total)