Viewing 15 posts - 166 through 180 (of 595 total)
I'd like to add that if you are using bound forms in Access, you will also need to add that unique field to the underlying data source, otherwise you will...
March 29, 2009 at 9:25 am
nabajyoti.b (12/22/2008)
I have table in MSAccess which i to be in SQL Server 2005.
For that i want to put the whole table structure copied without me having to write...
March 29, 2009 at 9:11 am
Here is some sample code that builds a list of tables where the name matches a pattern, and then executes T-SQL for each table. No cursors 🙂
DECLARE
@TABLE_NAME sysname,
@sql nvarchar(4000)
SET...
March 27, 2009 at 7:37 am
The Exam Cram books are the least expensive, they do an OK job but you do need to have hands-on experience with the product for them to be most effective....
March 20, 2009 at 6:42 am
ChrisStar (2/26/2009)
March 19, 2009 at 6:08 am
Another way to do it. . .
CREATE TABLE #temp
(
[name] nvarchar(128),
...
March 4, 2009 at 5:37 am
Steve, is there a way you can configure the Google search to restrict the search to a specific forum? Also, is there an option to display a cached version like...
February 19, 2009 at 5:35 am
cindy_sinath (11/11/2008)
February 14, 2009 at 7:23 am
You can create your view and CAST the bigint as numeric(18,0) and Access will understand it & also tolerate joins with Long Integers.
If you use a varchar and try to...
February 14, 2009 at 7:12 am
If the user is the head of Finance then the politics can quickly get out of control. I would suggest that you talk to your boss & explain your concerns....
February 7, 2009 at 8:58 am
funkyd (2/5/2009)
I have advised that instead, they use the reporting tools that come with the system or we use SSRS which is supported by the vendor.
One more thing - if...
February 6, 2009 at 8:16 am
Yes, the application determines what they can do, based on their Windows ID. If we had used a Windows service account then we could not distinguish who the user is,...
February 6, 2009 at 8:10 am
With a Windows service account we would not have the granularity i.e. each user has specific permissions within the app based on their Windows ID.
February 6, 2009 at 7:39 am
One downside of using Windows authentication is that a user could create an Excel, Word, or Access file that connects via ODBC directly to the database. That is a big...
February 6, 2009 at 6:54 am
Viewing 15 posts - 166 through 180 (of 595 total)