Viewing 15 posts - 151 through 165 (of 325 total)
I think you have to look how to make Path-through query in Access (so you make it on SQL Server directly)
and in this path through query you can write (with...
May 26, 2004 at 6:34 am
I think there is a script here in sqlservercentral.com that help u to kill all of the runnung processes .. so you can remove the DB .. search for that...
May 24, 2004 at 5:13 am
When you use complicated queries joined from several tables, These tables are updated frequently, then you lock these tables (or you will wait for previous transaction lock on these tables...
May 24, 2004 at 5:07 am
the best solution for transfer data and Structure from SQL Server to Access is:
open Access
from "file" menu, choose "Get External Data" , then "Import"
then in "Files of...
May 24, 2004 at 1:02 am
I download many Tools that may help me in writing and developing stroed procedure and views ..
the best tool I found is "msSQLed" .. it is very good
I hope...
May 18, 2004 at 1:49 am
thanks everybody
I use sp_executesql and if any error happens ..the @@error varialble will hold it.
I also take in my mind that any variable you will use in sp_executesql it...
May 18, 2004 at 1:42 am
also take care that Cascade Delete is very dangerous (in depth)... because you may delete a row in a table and discover that there are many rows in many tables...
May 12, 2004 at 7:24 am
I think if you use a programming language (or access) and link the form to the Table fields ... then you don't have to write N' ...
May 12, 2004 at 3:39 am
try to have the Local administrator of the machine .. and adjust SQL Server to run on that Local account
May 12, 2004 at 3:33 am
on server
1- open Enterprise Manager .. righe click on your server and choose properties
2- on connections tab , write the maximum conncurrnt user connectios
on Database .. i don't know if...
May 12, 2004 at 3:31 am
I think you have to check @@error global variable after any inser, update or delete ..
and
if (@@error 0) /* then error happened */
...
May 12, 2004 at 2:53 am
also you can put it on a job
May 12, 2004 at 2:49 am
Have you thought about running a trace against the server to capture the textdata information (that is related to deadlock only) and save this trace into Table
and then...
May 10, 2004 at 8:08 am
here is another link for "Microsoft Office Web Components"
http://download.microsoft.com/download/c/2/8/c28831e9-684e-4aab-9af3-f061bf68ad70/WebCmpnt.doc
I hope it help u all
May 9, 2004 at 2:26 am
I think the best thing is "Microsoft Office Web Components"
you can use this component in Any Office product or in any programming langusge (like C#)
see this 2 links
http://www.sla.urc.ac.ru/edu/chMath/intro2003/interest/owc/owc.htm
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacbk02/html/odc_4010c12.asp
I hope...
May 6, 2004 at 6:29 am
Viewing 15 posts - 151 through 165 (of 325 total)