Forum Replies Created

Viewing 15 posts - 511 through 525 (of 587 total)

  • RE: Linked Server, show tables in SQL Server Management Studio

    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,...

  • RE: hipotetic index?

    🙁 I was hoping to learn a new word today!

    Chad

  • RE: SQL Brain

    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,...

  • RE: Update Stats with Reindex

    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...

  • RE: msforeachtable not working in 2005

    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

  • RE: Partition Functions

    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...

  • RE: Topic creator can privalage to closed the topic

    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...

  • RE: Searching the QOD

    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

  • RE: Topic creator can privalage to closed the topic

    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...

  • RE: Stored Procedure and Excel

    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...

  • RE: Deleting 400K rows

    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...

  • RE: Connection Pooling

    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...

  • RE: XML Query

    If we win the book will it be autographed?

    :w00t:

    Chad

  • RE: Querying XML Datatype Column

    Does this get you started in the right direction?

    DECLARE @myvar AS XML

    , @XMLDoc int

    SELECT @myvar = '

    &ltMovement xmlns="" Context="Acquire"&gt

    &ltOperationCollection&gt

    &ltOperation Name = "Execute"&gt

    &ltOptionCollection&gt

    &ltOption Name="Execution.Capability"&gt(Synchronous,Asynchronous)&lt/Option&gt

    &ltOption Name="Execution.Preference"&gt(Asynchronous)&lt/Option&gt

    &ltOption Name="Origin.Status.Criteria"&gt(Fail)&lt/Option&gt

    &lt/OptionCollection&gt

    &lt/Operation&gt

    &ltOperation Name="ConnectorContext"&gt

    &ltOptionCollection&gt

    &ltOption Name="Connector.MerchantIdentifier"&gt56500&lt/Option&gt

    &ltOption Name="Connector.Alias"&gtCC_01&lt/Option&gt

    &ltOption Name="Connector.Wallet.TransactionIdentifier"&gt(wirecard:Transaction)(00000000000000000000000001xP2)()&lt/Option&gt

    &ltOption...

  • RE: Can SQL Server be published on web

    I agree completely!

    Chad

Viewing 15 posts - 511 through 525 (of 587 total)