Viewing 15 posts - 16 through 30 (of 54 total)
It might make a difference what you are using to consume the output of the stored procedures. For example in Access vba, there is an ADO NextRecordset method that allows...
October 4, 2007 at 8:42 am
Since you seem to be stuck with the date in a non-date format...
What if you had your where statement like this:
WHERE 20070801 > StartDate
AND (20070801 <= EndDate or EndDate...
October 1, 2007 at 9:22 am
Use a Conditional Split tool to check to see if a field is null. You can direct those records with null fields down another path that will let you fix...
August 31, 2007 at 6:53 am
Now that I think about it, that is true. That is probably why I generally sum to a temp table and then update from there.
August 28, 2007 at 6:41 am
I was going to suggest that also. But I had tried it with the WHERE clauses and it worked.
Code is much easier to read, in my opinion, using joins rather...
August 27, 2007 at 2:49 pm
I was able to use this SQL and it ran as is. I created a test table in Northwind and updated it from Order Details using the orderID and the...
August 27, 2007 at 2:30 pm
MS did, and does, provide, in Access, a way to have a full and tight integration with SQL Server, which enables you to use the user friendly, GUI Access as a...
August 27, 2007 at 7:57 am
There are actually quite a few "tranformation" tools that you can use in SSIS. You could use a conditional split to send those items that have an incorrect date down...
August 27, 2007 at 7:20 am
One way to run an SSIS package from T-SQL is to set it up as a job and then start that job in TSQL. Assuming you have a job "Weekly...
August 24, 2007 at 8:10 am
Another alternate solution might be to use SQL security. You could set the users up one time with SQL logins, set them up as users with the appropriate security in...
August 24, 2007 at 8:03 am
I agree, you should CREATE the temp table. Also, it should not be prefaced with @ since that is reserved for variables. A temp table should be prefaced with #...
August 24, 2007 at 7:38 am
Also, as Steve mentioned above, using an adp instead of an mdb, moves the tables to SQL server. You can then use stored procedures as the data source to further...
August 20, 2007 at 9:55 am
Since he is using an adp, you do not have to set a connection, like you do when you use an mdb. An access adp maintains its own connection to...
August 14, 2007 at 7:34 am
Ah , the not looking back part! Yes, I will follow up elsewhere. Thank you.
August 7, 2007 at 8:48 am
In the original article Andy posted the following:
Let's start with a common example. If I asked you which is the best practice, using Windows authentication or SQL logins, I bet...
August 6, 2007 at 10:23 am
Viewing 15 posts - 16 through 30 (of 54 total)