Viewing 15 posts - 511 through 525 (of 587 total)
I don't know anything about the StarSQL driver, but I have seen similar issues using DTS against ODBC (specifically Firebird). Sometimes it seemed to work and sometimes it didn't,...
August 15, 2008 at 8:43 am
I'm afraid mine has no foreign key constraints. Helps with creativity and problem solving and spews out some hillarious "stream-of-consiousness" conversations. Well, at least I think they're hillarious,...
August 15, 2008 at 8:39 am
Shucks.
I assumed based on the question wording that it was asking if the table statistics (not the index statistics) were updated. Guess I read "on the table" as the...
August 14, 2008 at 8:58 am
sp_MSForEachTable replaces the question mark directly, so what you ended up with was:
Update Statistics "[dbo].[zipcode]" with FULLSCAN
If you remove the double quotes from your query, it should work.
Hope this helps!
Chad
August 13, 2008 at 12:58 pm
Hmmm... I got the error below, which wasn't one of the options, so I couldn't select it:
Msg 7736, Level 16, State 1, Line 2
Partition function can only be created in...
August 8, 2008 at 9:20 am
Do you have any suggestions on how to search for posts with few replies without providing any keywords? That doesn't give a definitive list of open questions, but if...
August 5, 2008 at 1:11 pm
Yes, I was thinking for the writers. I guess the best thing to do is search as best we can and submit it. Thanks Steve!
Chad
August 5, 2008 at 1:09 pm
This would be a nice option - to be able to mark your question as "answered" by closing the thread. I'm not the best at answering, but do like...
August 4, 2008 at 10:42 am
There are a few options, but using a SP may not be the best for you. Take a look at this article: http://support.microsoft.com/kb/321686. If the Excel file...
August 1, 2008 at 5:01 pm
I don't know if this will work for your situation, but I have implemented something in a similar using TOP.
I created a job to move records slowly from one table...
August 1, 2008 at 3:33 pm
Look for a bunch of exec sp_reset_connection calls - a pooled connection will call this proc when it wants to reset a connection pulled from the pool. If you...
July 30, 2008 at 1:59 pm
Does this get you started in the right direction?
DECLARE @myvar AS XML
, @XMLDoc int
SELECT @myvar = '
<Movement xmlns="" Context="Acquire">
<OperationCollection>
<Operation Name = "Execute">
<OptionCollection>
<Option Name="Execution.Capability">(Synchronous,Asynchronous)</Option>
<Option Name="Execution.Preference">(Asynchronous)</Option>
<Option Name="Origin.Status.Criteria">(Fail)</Option>
</OptionCollection>
</Operation>
<Operation Name="ConnectorContext">
<OptionCollection>
<Option Name="Connector.MerchantIdentifier">56500</Option>
<Option Name="Connector.Alias">CC_01</Option>
<Option Name="Connector.Wallet.TransactionIdentifier">(wirecard:Transaction)(00000000000000000000000001xP2)()</Option>
<Option...
July 28, 2008 at 1:47 pm
Viewing 15 posts - 511 through 525 (of 587 total)