Viewing 15 posts - 1,606 through 1,620 (of 2,051 total)
could be permissions, referential integrity
Are you using a stored proc for the delete command or dynamic sql?
(number of output parameters match?)
February 15, 2006 at 10:56 am
have a look at
http://www.davidpenton.com/testsite/scratch/disconnected.command.asp
basically
rs=adocmd.Execute
while not rs.eof '*retrieving all records*
rs.movenext
wend
February 15, 2006 at 10:53 am
Hmm, the image doesn't show up.
Can you post your report sql + table definitions & some sample data?
*calling a stored procedure from asp
http://support.microsoft.com/kb/q164485/
*creating a stored procedure
CREATE PRODECURE dbo.USP_MY_PROCEDURE
(@Param1 as...
February 15, 2006 at 10:40 am
server: =mssql10.oneandone.co.uk
login id = dbo152591563
password= dbo152591563's password
Can you verify through the admintool that the user dbo152591563 can login?
February 15, 2006 at 10:33 am
Right,
Because in sql server 2000 the jobs are "attached" to a servername to allow multiple instances.
You can script out all jobs, or you can adjust originating_server in msdb.dbo.sysjobs
February 15, 2006 at 10:26 am
rewrite as
docmd.setwarnings false
docmd.openquery "xxx"
docmd.openquery "xxx"
docmd.setwarnings true
February 14, 2006 at 1:38 pm
Welcome.
I'm having trouble seeing your pictures.
If the sql server is the default instance, the servername is likely to be your hostname.
What connectionstring are you using?
Is this using the Access upsizing...
February 14, 2006 at 1:35 pm
February 14, 2006 at 9:37 am
you better rename the sql server also
Renaming:
sp_dropserver 'old_name'
go
sp_addserver 'new_name', 'local'
go
+ restart sql server
http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B303774
February 14, 2006 at 9:28 am
Is this using an Oracle stored procedure?
I'm curious as well.
*I have to try this one out
http://objectsharp.com/blogs/matt/archive/2005/06/13/2221.aspx
February 14, 2006 at 9:13 am
The wizard has an option keep existing indexes.
You may set it to off and view the changes/proposals.
February 12, 2006 at 11:17 am
Can you elaborate
I get a good resultset but the problem is 'm databinding using a datalist.After binding i don't get the fields k_seas_avail.DescID,seas_id,season,twin set correcty i only the values for...
February 12, 2006 at 9:03 am
Indexes are only uses when the time using the index + looking up the linked records takes less time than a table scan (where one can read bigger chunks).
One decisive...
February 12, 2006 at 8:55 am
This site has a tutorial for sql server administration;
http://www.informit.com/guides/content.asp?g=sqlserver&seqNum=177
Do you plan to use a gui (SQL server enterprise manager) to manage the database/users or via T-SQL statements (query analyzer ...)
*adding users/roles
http://www.sqlservercentral.com/columnists/awarren/loginsusersandrolesgettingstarted.asp
*The books...
February 10, 2006 at 11:41 am
You could install sql server express 2005 http://msdn.microsoft.com/sql/express/
The documentation you can download at
With this tool you can manage the express database
if you need to test specific...
February 10, 2006 at 11:22 am
Viewing 15 posts - 1,606 through 1,620 (of 2,051 total)