Viewing 15 posts - 1,816 through 1,830 (of 1,995 total)
100Mbps - no worries - i've been used to deploying these acess/SQL solutions across a 512kbps ADSL line(where it's difficult to get a higher speed line installed - such as...
August 12, 2004 at 8:02 am
there is a web cast that you can view at http://www.microsoft.com/sql/reporting
this shows how easy it is to create and distribute reports, although it's a bit cheesy for my liking.
crystal...
August 12, 2004 at 3:15 am
there are some network throttling (and monitoring) tools that you can download (we used them to simulate moving from citrix published apps to a Client/server app over the WAN.
i'm not...
August 12, 2004 at 3:09 am
not quite that way,
access calls gets the results steadily using as much network bandwidth as it can.
the reult set is available immediatley, (which is why you can navigate quickly...
August 12, 2004 at 1:54 am
if this is a one way process (from pub to sub) then have you considered using log shipping ?
August 9, 2004 at 9:02 am
according to microsoft docs you can't.
what you could do though is back up your user databases and uninstall sql server - then install sql standard and restore your databases.
proboably best...
August 9, 2004 at 8:56 am
just out interest, if you switched to simple mode, why did you back up the log ??
just run a checkpoint command????????
August 9, 2004 at 8:53 am
sql server and access will drip feed the results through the connection.
what you can do to give your users the perception of a faster connection is use the FAST...
August 9, 2004 at 6:16 am
you could write out the stored procedures to text files and then use ISQLW.exe to run them.
that way you can use xp_cmdshell to call ISQLW
August 9, 2004 at 6:09 am
declare @strsql nvarchar(4000)
if (select system_user)='mike'
begin
print 'True'
set @strsql='create procedure usp_test as select NULL'
exec sp_executesql @strsql
end
else
begin
print 'False'
set @strsql='create procedure usp_test as select NULL'
exec sp_executesql @strsql
end
August 9, 2004 at 5:38 am
you can import data from foxpro fairly easily.
right click on your new database and select all tasks, then choose import data.
as your source choose the driver for Visual...
August 9, 2004 at 4:07 am
the problem is that your stored procedure is returning the nuber of rows inserted into you temp table as the first result (which the app will pick up)
all you...
August 6, 2004 at 9:55 am
we support several systems that fall into these categories.
you were wondering if your front end application will work with a clustered active/active (load balancing) solution - most likely...
August 6, 2004 at 8:30 am
try the query
select name from sysobjects where id=2057058364
this should tell you the table name
August 6, 2004 at 7:53 am
Viewing 15 posts - 1,816 through 1,830 (of 1,995 total)