Viewing 15 posts - 1,246 through 1,260 (of 1,270 total)
Well, my thinking was that you could query the field to see if the highest date in any of the tables is higher than the last time you did a...
January 12, 2004 at 1:58 am
When I interviewed for the job I have now (Database Administrator) back in Jan. 2000, I didn't have my SQL certification yet (I do now). The CTO did comment that...
January 10, 2004 at 2:24 am
You can't. That would create a circular preference. Step 1 wouldn't be able to run unless step 6 failed, but step 6 won't run unless steps 1 through 5 are...
January 9, 2004 at 11:49 pm
I agree. I think triggers is the way to go. I don't see why it would create a lot of overhead if you use the triggers wisely. In my important...
January 9, 2004 at 10:10 am
I didn't read the article, so I'm not sure that what you mean by parameterized list is what I think of when I hear parameterized list.
A parameterized list to me means...
January 9, 2004 at 9:56 am
In this particular instance, that is the way that I would do it, but I was answering his question about subqueries.
I've found that when someone posts a very simple bit...
January 9, 2004 at 9:42 am
You can use VBScript or JScript.
None of our stuff was as complicated as yours. It was mostly simple string manipulation.
January 9, 2004 at 9:22 am
For something that simple, I would say no.
If you re-use the query several times within the same sp, I would set it equal to a variable and just re-use the variable.
If...
January 9, 2004 at 9:08 am
When I started at my current company in 2000, one of the developers here liked to do that. We import a lot of data from other people's databases and it...
January 9, 2004 at 8:53 am
What version of Access?
Access 2000 & newer (maybe older too, not sure) has an upsizing wizard that will automatically convert your Access database into either an existing or new SQL...
January 8, 2004 at 3:29 am
There are a couple of ways you can do it.
1. Use a DTS package to export the data to a text file. To get the report output correct, you may...
January 8, 2004 at 3:12 am
Make sure that you have also unchecked the "enable identity insert" checkbox or it will try to insert Null into the identity field that you are ignoring.
January 8, 2004 at 2:48 am
Use your workflow precedents to tell the package what to do if the step fails and/or suceeds.
If you have multiple branches and want to make sure that the DTS package...
May 6, 2003 at 1:43 am
No, your cursor name can not be variable.
If you are going to declare a cursor with the same name, you have to first deallocate it.
At the end of the cursor...
May 1, 2003 at 5:26 pm
I process a lot of data that belongs to other companies. Much of this data has to first be acquired from various ftp sites.
So, I want to ftp in information...
April 24, 2003 at 11:18 am
Viewing 15 posts - 1,246 through 1,260 (of 1,270 total)