Viewing 15 posts - 1,621 through 1,635 (of 2,062 total)
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
*One way could be with setting permission based on an application role
in query analyzer they will need
to execute sp_setapprole on the connection
*you have the
APP_NAME ( ) function that...
February 10, 2006 at 11:12 am
Are there any char/varchar columns in the table?
If you generate the create table scripts for both tables, it is an exact match (except for the indexes)?
February 10, 2006 at 10:59 am
The cost% is to be taken with a grain of salt.
Table scan, index scan... generally give a better indication.Usually the query with the fewest reads will be faster.
What was the...
February 9, 2006 at 10:26 am
Welcome.
Have a look at
http://www.sql-server-performance.com/query_execution_plan_analysis.asp
Performance is mostly based on the amount of reads (I/O) and then cpu/duration.
If possible avoid the use of cursors(very important),record by record based solutions and use...
February 9, 2006 at 10:21 am
Viewing 15 posts - 1,621 through 1,635 (of 2,062 total)