Viewing 15 posts - 106 through 120 (of 457 total)
You're not going to like this...
The problem is that there's a lack of support for the Jet engine in 64-bit environments. This is a headache we've run into a...
August 2, 2007 at 10:03 pm
I would *highly* recommend against using a domain administrator account to run your SQL Server services. And also it's really not good to use the same password for sa...
August 2, 2007 at 11:00 am
You might be best off controlling this via the MS Access front end. A little VB to lock the field once there's a valid value in there could go...
August 2, 2007 at 10:14 am
It looks like the first procedure does a refresh of the Customer_Profiles table and then inserts records one at a time back in by calling the other two procedures to...
July 31, 2007 at 5:31 pm
Please don't cross-post in multiple forums. Posting in a single forum will almost always get an answer.
That being said, John's right. Your cursor is the 900lb gorilla of...
July 31, 2007 at 4:19 pm
It's worth noting that if you have tables which don't have clustered indexes on them, they will not be displayed using that method. Lord knows you should never have...
July 31, 2007 at 12:51 pm
Could do something like this:
CREATE TABLE #tbls(
tbl_nameSYSNAME
)
exec sp_msforeachtable 'IF (SELECT COUNT(*) FROM ?) > 0 INSERT #tbls SELECT ''?'' '
SELECT * FROM #tbls ORDER BY tbl_name
DROP TABLE #tbls
July 31, 2007 at 12:00 pm
Maybe I'm not understanding you right... Why don't you add some sort of primary key to the table and then delete?
i.e.
DELETE x
FROM mytable x
JOIN mytable y
ON x.column1 = y.column1
AND...
July 27, 2007 at 11:38 am
You need to drop or disable the foreign key constraints on the related tables which reference the primary key of that table first. Then you should be able to...
July 23, 2007 at 11:54 am
I've run into a number of issues like this, most frequently related to Excel. The way I understand the issue is that there's a guessing process which looks at...
July 20, 2007 at 5:44 pm
Why not do this?
WHERE DATEADD(dd, -1, datevalue1) = datevalue2
July 20, 2007 at 11:15 am
This one is pretty easy to figure out if you check BOL first... read up on the entry on date functions. But this should work:
SELECT ...
July 19, 2007 at 10:08 pm
Well, it's possible that if there are several columns in the index it won't be considered in the query if only one column is in the list. If possible...
July 18, 2007 at 11:32 am
Perhaps you can post the query?
Is the INVOICENUMBER column the only column specified in the index?
July 18, 2007 at 10:04 am
Per-processor licensing would be the number of physical processors. So a dual-core processor would only count as 1 processor even though two logical processors show up in the system.
You...
July 17, 2007 at 3:51 pm
Viewing 15 posts - 106 through 120 (of 457 total)