Viewing 15 posts - 2,341 through 2,355 (of 3,656 total)
If I remember correctly Lotus Approach relies on the old DBF format.
You could use a DTS package to export the data you want into suitable DBF files to use for...
July 10, 2006 at 4:15 pm
A primary key is a special sort of unique index.
The difference between an primary key and a unique index is
July 10, 2006 at 12:00 pm
I'm wondering if it has something to do with caching.
QA will be running this query from scratch. Perhaps the SQLSERVERAGENT has an execution plan cached in some way.
If you...
July 9, 2006 at 2:54 pm
If I understand you correctly you have a primary key with two columns in it.
A search using the two columns within the primary key should use an index seek, or...
July 9, 2006 at 2:50 pm
Are you talking about SQL 7.5/2000?
I used to do something similar using a Data Transformation Services (DTS) package within SQL Server.
Transfering the queries is a little more involved.
SELECT, INSERT and...
July 9, 2006 at 2:38 pm
I am guessing that dope24_sa was an attempt to create a sysadmin role that wasn't the SA login.
Prior to SQL2005 NOT having objects owned by the dbo was always ended...
July 9, 2006 at 2:34 pm
If you are using SQL2000 there are stored procedures that let you use ActiveX controls.
sp_oaCreate etc.
You can instantiate a copy of word then call methods from the Word object model.
I...
July 7, 2006 at 3:40 pm
It is to do with the way in which EM makes its connections. You should try the new Management Studio if you have a timeout fetish. ...
July 7, 2006 at 3:37 pm
Best practice would be to
If you truly need dynamic SQL look at sp_executesql rather than exec. sp_executesql will...
July 7, 2006 at 3:34 pm
Hope the article on Symetric Keys and Certificates comes soon!
July 6, 2006 at 5:22 am
SELECT C1,C2 FROM dbo.YourTable AS YT WHERE C1 IN ( SELECT C1 FROM dbo.YourTable GROUP BY C1 ...
July 5, 2006 at 1:24 pm
Try the new SQL2005 table partitioning as a starting point but read up on backing up of the database first.
If your system is web based and .NET based then you...
July 5, 2006 at 1:21 pm
At one place I worked the difference between the testing and production hardware was that the testing hardware was slightly more beefy than the production environment. The idea was...
July 5, 2006 at 1:15 pm
You can only use INNER JOIN for an indexed view.
I take it that a MedicRecs record might not have a record in
Where possible I design my databases so that LEFT/RIGHT...
July 5, 2006 at 1:09 pm
Viewing 15 posts - 2,341 through 2,355 (of 3,656 total)