Viewing 15 posts - 4,441 through 4,455 (of 6,486 total)
Steve Jones - Editor (2/28/2008)
Matt, not sure I agree with...
February 28, 2008 at 2:43 pm
Let's rephrase that to see if I'm hearing the question correctly.
Are you looking to simply enforce uniqueness across those three columns? If you simply create a UNIQUE CONSTRAINT on...
February 28, 2008 at 2:18 pm
You can dump the one record into a table var, and read that.
February 28, 2008 at 2:00 pm
Or - set the return status of the SP so that the calling app knows why it didn't work....
(not a huge fan of raiserror)
February 28, 2008 at 1:51 pm
Also - do the management reports work in Express? do they work in every version? (with SP2 on)
I could swear I had an SP2 install, and nothing under right-click....
February 28, 2008 at 1:22 pm
You should be able to see one in the device manager under Manage. Right-click my computer, Manage (which you can also connect to a remote machine with the right...
February 28, 2008 at 1:20 pm
Good to know it worked - thanks for the feedback!:)
February 28, 2008 at 12:57 pm
I don't think Access allows for CAST. It uses the more "VB-like" functions for casting: Cstr (cast to string) Clng (long int) cdbl (double) cdate....
February 28, 2008 at 12:56 pm
For some reason I've seen this disabled on occasion, but assuming your install is "fully functional": right-click on the database name, pick "reports", "standard reports", "disk usage by table".
February 28, 2008 at 12:45 pm
I'm not sure what yuo're using this table for - but just shuffling the identity fields around usually causes a LOT of throuble.
Reusing identity numbers previously used is a relational...
February 28, 2008 at 12:12 pm
Depending on a lot of factors, but yes - you can do it without SSIS. Whether you SHOULD is an entirely different topic.
Assuming the Access database is in a...
February 28, 2008 at 12:03 pm
jeremy.giaco (2/28/2008)
Nick Rawlins (2/28/2008)
Good artible, however a full table scan isn't being performed, but an Index Scan is which is different to a table scan...
There really isnt much of a...
February 28, 2008 at 11:41 am
Hmm - I think this give you what you wish (not sure it's all that performant)
Select O.* from Orders O
where
exists (
select null
...
February 28, 2008 at 11:34 am
So - if I understand you - you want to return all orders (and all of their line items) if the lineitems include any of the product ID's you list?
Select...
February 28, 2008 at 11:21 am
Instead of bringing the mountain to Mohammad, why not bring Mohammad to the mountain?
As in - why not copy the database and move it to the data directories where SQL...
February 28, 2008 at 11:01 am
Viewing 15 posts - 4,441 through 4,455 (of 6,486 total)