Viewing 15 posts - 226 through 240 (of 595 total)
grovelli
If I migrate only the backend(i.e. tables), what do I use to relink the...
August 8, 2008 at 8:31 am
I've been working quite a bit with SSMA, it works very very well but there are a few issues related to Access:
Every table needs a primary key, otherwise you can't...
July 29, 2008 at 6:26 am
npsarros,
You should definitely check out pass-thru queries. A pass-thru query lets you execute T-SQL directly from Access, and you can use the results just like any other Access query.
For example,...
July 29, 2008 at 6:07 am
My boss sent me this link to a post that contains the reg keys to delete. I tried it, the patch worked, and my version is 3068 hurray.
This fixed it...
July 15, 2008 at 10:38 am
On my work PC, the failed update left SQL Server stopped, so it would not connect. (The browser service was still running.) I went into the SAC tool and started...
July 11, 2008 at 8:39 am
Failed for me too, running MSSQL Express at work on a newer laptop w/ plenty of RAM and free disk space, Win XP. It failed when installing via automatic updates....
July 10, 2008 at 4:22 pm
Quick and dirty way:
OPEN "C:\Querytext.txt" FOR OUTPUT AS #1
PRINT #1, CurrentDb.QueryDefs("MyQueryName").SQL
CLOSE #1
June 26, 2008 at 12:51 pm
What does "legal" have to do with cloning? According to
http://sqlblog.com/blogs/kalen_delaney/archive/2007/11/21/cloning-in-sql-server-2005.aspx
"Cloning a database means creating a statistics only copy of it, so that you can examine execution plans for poorly performing...
June 26, 2008 at 6:53 am
I got it wrong, didn't know that creating a snapshot for msdb is not "prohibited" but I have to wonder - what would be the purpose of creating a snapshot...
June 26, 2008 at 6:43 am
You have the auto-join option turned on, and Access is guessing the relationships based on field names & data types.
Click Tools ~ Options and click the Tables/Queries tab. Un-check the...
June 13, 2008 at 4:54 pm
Could it be that the field is set for Required = Yes - ?
June 13, 2008 at 4:48 pm
Create a new query in Access, don't add any tables. Click Query ~ SQL Specific ~ Pass-Through. In the SQL window, type your statement e.g.
EXEC usp_MyProcedure '6/6/2008'
then click View ~...
June 6, 2008 at 12:44 pm
hyd (6/5/2008)
I wanted to know how to convert access97 to sql server 2005
If anybody has done it could u please list down the problems u face d and how...
June 6, 2008 at 12:33 pm
Create a new table named tblTables_RecordCounts with fields TableName (text,64) and NumOfRecords (long integer) and then run this:
Sub GetRecordCounts()
Dim db As DAO.Database, tdf As DAO.TableDef, rs...
June 5, 2008 at 1:07 pm
Viewing 15 posts - 226 through 240 (of 595 total)