Viewing 15 posts - 1,666 through 1,680 (of 2,051 total)
from http://www.databasejournal.com/features/mssql/article.php/3085211
Linked servers are a superset of "remote servers." Remote servers allowed the running of stored procedures on distributed SQL Server machines. SQL 2000 BOL states, "Support for remote...
February 3, 2006 at 12:20 pm
Glad you got it sorted out
February 3, 2006 at 12:10 pm
like alternating colors or just the textfield above in the combobox?
Access2000 and higher implement conditional formatting:
February 3, 2006 at 12:09 pm
I've gotten different sortorders with
SELECT TOP 10
CONVERT(NCHAR(10), S.fecha_creacion, 120) AS fecha_creacion
,S.fecha_creacion AS B
,ID
FROM dbo.test S
ORDER BY B DESC
ID 1 on top
SELECT TOP 10
CONVERT(NCHAR(10), S.fecha_creacion, 120) AS fecha_creacion
,S.fecha_creacion AS B
,ID
FROM dbo.test S
ORDER BY fecha_creacion...
February 3, 2006 at 11:56 am
Aren't DSN's for ODBC-sources only?
You can use DSN-less connections however
http://www.experts-exchange.com/Programming/Programming_Languages/Visual_Basic/Q_21009195.html
February 3, 2006 at 11:49 am
Interesting issue
SELECT TOP 10 S.id_solicitud, CONVERT(NCHAR(10), S.fecha_creacion, 120) AS fecha_creacion, S.nombre, S.clave_material, IsNull(CONVERT(NCHAR(10), S.fecha_ini_pruebas, 120), 'N/A') AS fecha_ini_pruebas, IsNull(CONVERT(NCHAR(10), S.fecha_fin_pruebas, 120), 'N/A') AS fecha_fin_pruebas, IsNull(CONVERT(NCHAR(10), S.fecha_emision_reporte, 120), 'N/A') AS fecha_emision_reporte FROM dbo.tblSolsInstrum_Solicitudes S WHERE id_usuario = 'car6527' ORDER BY fecha_creacion...
February 3, 2006 at 11:43 am
The log continues to grow if there are any lasting open transactions.
Perhaps the SET implicit transaction option was modified?
Have you contacted the vendor on what settings were modified?
February 3, 2006 at 10:58 am
like barsuk wrote
What are you current connection settings of
SET ARITHABORT ON|OFF (abort batch on error)
and SET ARITHIGNORE ON|OFF. (issue a warning but continue)
February 3, 2006 at 10:49 am
Welcome to the forum
Some guesses:
1) if you "link" the intercache table in Access, is there a primary key/unique index?
2) How fast does
SET NOCOUNT ON
SELECT A.ID, X.ID
FROM tblTable01AddOn...
February 3, 2006 at 10:46 am
logging on to the network with the account sql server/sql server agent runs under and try to put a file on the share
February 3, 2006 at 10:34 am
have a look at
http://www.sql-server-performance.com/articles_audit.asp
1)when to add memory: monitor Buffer Cache Hit Ratio
In OLTP applications, this ratio should exceed 90%, and ideally be over 99%. If your buffer cache hit...
February 2, 2006 at 12:43 pm
Is the sql server running on your pc?
What OS do you have?
February 2, 2006 at 4:57 am
In addition you can set a default value for the bit fields so that Access doesn't try to insert NULL in them.
January 30, 2006 at 12:22 pm
Viewing 15 posts - 1,666 through 1,680 (of 2,051 total)