all groups > sql server odbc > august 2004
Filter by week: 1 2 3 4 5
Problem with ntext field in asp page
Posted by Bill at 8/30/2004 10:52:36 PM
Hi all,
I have an asp page that writes to an ntext field in SQL Server 2000.
All was going well until I had to put in a section of text greater than 8000
bytes.
Then I got a timeout error and the update wouldn't go through.
After reading that 2000 only accepts chunks of 8000 bytes or under at... more >>
Connection to ODBC without a DSN
Posted by Tony at 8/27/2004 3:53:47 PM
Is it possible to connect to an ODBC driver (e.g. SQL Server or Oracle)
directly without having to create a DSN before hand.
This would be great as dumb users can't handle creating a DSN.
Would be nice if I could ask them SQL Server or Oracle, server name, user
name and password only and progr... more >>
String data, right truncation
Posted by Leon McCalla at 8/27/2004 11:54:15 AM
after executing a Stored procedure that returns about 10 strings I get a
"String data, right truncation" error in ODBC. how do I know which string
was too long?
Leon
... more >>
Compatibility of ODBC 2000 vs ODBC 2003
Posted by chanjo at 8/27/2004 11:22:15 AM
Will there be a compatibility issue between my client ODBC
version 2000.80.194 and the SQL server 2003.... more >>
Mainframe file import
Posted by AlexB at 8/25/2004 6:01:01 PM
I am hoping to import a file exported from mainframe (packed decimal) into a
SQL Server database. Is it possible and if so, what is the best way to
accomplish this?
Thanks in advance.... more >>
Nested Transaction between ADO.NET and T-SQL
Posted by SK at 8/25/2004 5:25:03 PM
I am writing an application that calls numbers of stored procedure wrapped in
an ADO.NET transaction. Some of the stored procedure implements T-SQL
transactions.
Is it safe to call Stored Procedure like this or there is potential of data
corruption.
Have anyone seen any document or article... more >>
create same Database connection on multiple computers
Posted by #'ak at 8/24/2004 4:37:13 PM
Hi,
is there a possibility to create automaticaly a ODBC database connection on
the multiple client computers (equal for all of them), in ex. on windows
2000 Profesional or XP?
And secont thing. Is there a possibility to automaticaly change all of the
ODBC connections without changing one by on... more >>
MDAC version
Posted by Ian at 8/24/2004 1:47:27 PM
Hi
How can I find out what version of MDAC is installed on a Machine.
And would there be any problem with me installing both MDAC 2.7 and 2.8 on
the same machine
Ian
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
not function
Posted by Michel at 8/23/2004 6:08:26 PM
I'd like to do the following query
update myTable set myField = not (myField)
But it looks like not isn't a function.
How can I write this?
Thank you
... more >>
Importing views from Oracle
Posted by Scott at 8/23/2004 1:49:01 PM
I've been able to import tables successfully from Oracle
to a SQL Server database. However, when I try to import
views from Oracle it wants to import them as tables in
SQL Server. Any ideas how I can import views as views
from Oracle to SQL Server?... more >>
Help with MS Access Error Trap
Posted by rob at 8/23/2004 10:04:54 AM
Please excuse if you feel this is posted in wrong group (I have posted in
Access groups as well)... I do know there is at least some some cross-over
base here that may help...
I am trying to establish links from Ms Access to tables in a SQL server
database. There is an Access table (tblLinkMa... more >>
ODBC security parameters
Posted by stevesklar at 8/23/2004 7:12:42 AM
We have several machines where multiple people login.
Normally we set the ODBC to 'with NT auth with network
login id'
When we change it from this to 'SQL server auth asking for
login id/pwd' our Visual Basic apps no longer work.
Our VB apps do have a login screen & pwd and that string... more >>
Transfer data from progress to SQL, character field format
Posted by Ofer at 8/23/2004 2:44:05 AM
Hi All,
I am using OpenLink's ODBC in order to transfer data from Progress Data
Server into the SQL.
When trying to transfer a field which has a character format on the
Progress Server, the DTS transfer only the first 8 characters of this
field.
The format of the field in the progress databa... more >>
ODBC Login
Posted by Dennis at 8/21/2004 7:41:01 PM
I am using an ODBC connection to a SQL Server 2000 database to retrieve
information for a Crystal Report. When I am logged onto the network as
domain admin and create an ODBC DSN using SQL Server authentication and my
database admin logon everything works fine. If I use another SQL Server
... more >>
Unexplained record loss
Posted by Tim Johnston at 8/20/2004 10:54:57 AM
Hi,
We have several applications that connect to SQL Server
using ODBC. We have some mysterious issues of record
loss without any error messages. Has anyone seen
anything like this?
SQL Server SP3 is installed. Are there MDAC issues that
could be at play?
Thanks,
Tim... more >>
DTS Package
Posted by Cindy at 8/20/2004 9:33:33 AM
Hi All,
I created a SQL Server DTS package when connecting to the SQL server on my
machine. We have a batch file created which was scheduled to run every Tue.
night on the server where SQL server really sits. In the batch file, we use
dtsrun to call this package. It has been running well. I sh... more >>
User names
Posted by Phil Burns at 8/19/2004 8:31:16 AM
How do you get SQL server to keep a note of amendments to
records in tables? We use MS Access 2000 & 2003 and SQL
2000, XP Pro / NT4 and Win 2003 server.
Also, why do I always have to re-link all the tables on
the NT4 workstations on an .mdb which works fine on all XP
w/s?
... more >>
Driver caching db??
Posted by JohnD at 8/17/2004 3:23:57 PM
Hello,
I'm not sure if this message belongs in microsoft.public.sqlserver.msde
or is more appropriate here. Please accept my apologies if I have the
wrong list.
I've written ODBC source in C++ that accesses an MSDE instance on a
local machine. I perform the usual steps:
1. Allocate ... more >>
help creating linked server to Unify ELS on SCO unix
Posted by pheonix1t at 8/15/2004 10:03:00 PM
hello,
I'm trying to create a linked server from an SQL2000 to a Unify ELS
(very old, odbc is version 1) database on SCO unix.
The odbc driver is old but it works fine when used by applications for
creating reports.
What I want to do is make a linked server from the SCO box to the win2k
box... more >>
BUG
Posted by Lisa Pearlson at 8/13/2004 2:10:32 AM
Why does this crash SQL7 with SP4 and latest MDAC?
CREATE TABLE #test (
[year] smallint,
[month] tinyint,
[product] varchar(100),
[value] money
)
GO
INSERT INTO #test VALUES (2000, 2, 'p-01', 1.00)
INSERT INTO #test VALUES (2000, 2, 'p-02', 2.00)
INSERT INTO #test VALUES (2001, 2, 'p-0... more >>
PostgreSQL
Posted by Venkat at 8/11/2004 5:44:01 PM
In a Union query, I have initialized one new column for sorting purpose. For
ex :
select ORD = 1 , t1.a, t1.b from table1 as t1
Union
select ORD = 0, t2.a, t2.b from table2 as t2
order by ORD.
ORD column is not present in thw table. It is used here for putting all the
rows of the second ... more >>
Convert User DSN to System DSN
Posted by Yair Sageev at 8/11/2004 1:00:33 PM
Hi all,
I stupidly setup a database as a userDSN but now want to make it a system
dsn so that I can access it from another machine. I have an access db that
uses msde linked tables for the back end, which is installed locally on 1
machine in the network. I want to be able to add new features... more >>
Linked server using the OLEDB for ODBC Driver
Posted by Charles J Ryan at 8/11/2004 12:37:48 PM
I have an ODBC driver to a non-SQL database that contains legacy data that I
need to reference in my application/reports. I had originally hoped to use a
linked server using the OLEDB for ODBC provider to access the data and so be
able to create applications/reports using data stored in SQL Se... more >>
SQLServerAgent will not start - "Event ID: 103" - URGENT HELP
Posted by badri at 8/11/2004 4:49:01 AM
Dear Support Team,
I had installed sqlserver 2000 with sp3 on windows 2003 server. Navision ERP
client software 3.70 installed in this server. Sql server service is running
as local system account and sql agent service is configured to run as local
system account. sql agent service is not ... more >>
Need help with DAO and SQL Server locking issue
Posted by George M. at 8/10/2004 3:59:02 PM
Problem: SQL Server 2000 blocking locks on Access upsized database.
Tools used: SQL Server 2000 SP3a, Access 2003, DAO 3.6
My project is to upsize an Access 2000 database to SQL Server 2000. I have
migrated the data to SQL Server, re-linked the tables, and converted the
database to Access... more >>
Problems deleting a column from SQL2000
Posted by Vi at 8/10/2004 3:25:04 PM
Hello,
I'm trying to delete an existing varchar(10) column called "abc1" o in a
table on a SQL 2000 database and I'm getting the following error message in
Enterprise Manager.:
'web_cartOrders' table
- Unable to modify table.
ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Lin... more >>
Memory error
Posted by ven at 8/10/2004 2:17:46 PM
"The instruction at 0x4174f6ff referenced memory at
0x4174f6ff. The memory could not be read" i am getting
when i am working on sq server enterprise manager... more >>
Connect to DB2 in a stored procedure
Posted by René at 8/9/2004 2:57:02 AM
Hi
I read data from a db2 database on an IBM mainframe through ODBC and
transfer it to a dabase on our SQL Server. Everything is done using a DTS and
it works fine. For serveral resons I would like to implement a stored
procedure doing the same task. Does anybody know how to solve this? Speci... more >>
How to use SQL stored proc as datasource for MS Word mail merge?
Posted by Fred Zolar at 8/6/2004 2:40:01 PM
Is it possible to use a SQL Server stored procedure as a datasource for MS
Word mail merge? If yes then how?
... more >>
Connection is busy with results for another hstmt
Posted by Athar at 8/6/2004 11:05:17 AM
I have my java based application that works fine with SQL
server 6.5.
I upgraded DB to SQL Server 2000 and now the application
give me "Connection is busy with results for another
hstmt " ODBC error after I do couple of queries or updates
through the application.
Is it anything to do ... more >>
ERROR 3027: CAN'T UPDATE
Posted by SJURIC at 8/6/2004 9:06:36 AM
I IMPORTED A DATABASE FROM AN SQL SERVER 7.0 TO AN SQL
SERVER 2000. I CAN UPDATE THE TABLES DIRECTLY ON THE
SERVER, BUT WHEN I TRY TO DO IT WITH THE PROGRAM THAT USES
THE DATABASE, IT GIVES ME ERROR 3027: CAN'T UPDATE,
DATABASE OR OBJECT IS READ-ONLY. I HAVE GIVEN ALL THE
USERS THEIR RESPE... more >>
Best way to Import data from EXCEL using a TSQL
Posted by Ian at 8/4/2004 4:58:57 PM
Hi All
I have a excel spread sheet that i need data from. This is the Data.
MyID
TextField
DateField
IntField
FloatField
1
Ian One
01/04/04
10
10.0304455900
2
Ian Two
02/04/0... more >>
question for the 'senior' people
Posted by pheonix1t at 8/3/2004 9:47:38 AM
hello,
My friend and I are working on a project involving oracle 9i and an old
Unify database. We got the oracle to see the unify (oracle running on
windows) by using the heterogenous services on oracle.
However, that was a test environment. The production environment has
oracle running on... more >>
|