Viewing 15 posts - 61 through 75 (of 84 total)
There's not going to be a clear-cut answer. Different developers are going to have their preferences based on their unique experiences. June 8, 2006 at 8:27 am
Just a thought.
There is a limit to the number of characters that can be stored in an Excel cell. I think it is 32768. Could this be your problem?
May 19, 2006 at 7:27 am
In the April 2006, ADVISOR GUIDE to Microsoft Access, there is an article by technical editor Andy Baron titled, "Linked Excel Data No Longer Updatable." In this article he explains...
April 19, 2006 at 7:41 am
That is correct.
FYI
The reason for separate copies is that after the first user opens an ADP, subsequent users opening the same, exact ADP will open it Read-only. If any of...
March 20, 2006 at 9:24 am
There are two ways to use MS Access with SQL Server:
1. With an Access Project (.adp) connecting directly to SQL Server.
2. Or, with an Access Database (.mdb) using ODBC.
The project...
March 20, 2006 at 7:33 am
If you use an Access Project (.apd), all the user tables and views will available, but the system tables and views will not.
March 9, 2006 at 7:41 am
You also spelled "DISTINCT" wrong in your example:
select distince p.id, p.comment, t.qty, t.amount, pr.name, t.time
February 17, 2006 at 7:12 am
You did not include enough information for an actual solution to be presented. However, the following example shows you how to conditionally SUM a column's value, using a CASE statement:
SELECT...
February 10, 2006 at 7:39 am
You may can use ADO to insert into the log and bypass the transaction:
1. Use sp_OACreate 'ADODB.Connection' to create a connection.
2. The use sp_OAMethod to "Execute" your SQL Insert Command.
February 6, 2006 at 7:48 am
xSQL Software has two products sold separately or as a bundle: A database object compare tool (xSQL Object), and a data compare tool (xSQL Data Compare). Both work very well. With the...
January 18, 2006 at 7:33 am
SELECT MONTH([dateadded]) AS MonthOfYear
, DAY([dateadded]) as DayOfMonth
, datepart(hour, [dateadded]) as HourOfDay
, SUM(CASE WHEN YEAR([dateadded])='2005' THEN 1 ELSE 0 END) as Count2005
, SUM(CASE WHEN YEAR([dateadded])='2006' THEN 1...
January 10, 2006 at 12:30 pm
SELECT MONTH([dateadded]) AS MonthOfYear
, DAY([dateadded]) as DayOfMonth
, datepart(hour, [dateadded]) as HourOfDay
, SUM(CASE WHEN YEAR([dateadded])='2005' THEN 1 ELSE 0 END) as Count2005
, SUM(CASE WHEN YEAR([dateadded])='2006' THEN 1...
January 10, 2006 at 12:29 pm
/*
This may or may not execute without modifications. I did not have any data to test it, but it is an example of one way to solve your problem:
Create...
December 20, 2005 at 10:32 am
Your problem has nothing to do with Enterprise Manager. No matter how you add a column to a table, a previously created view will not handle the table as you are...
November 23, 2005 at 7:54 am
Scott,
What Cory added to your stored procedure was the @year input parameter. This input paramter is needed as part of the stored procedure if you are wanting to pass...
November 15, 2005 at 12:50 pm
Viewing 15 posts - 61 through 75 (of 84 total)