Forum Replies Created

Viewing 15 posts - 481 through 495 (of 529 total)

  • RE: Service Pack 3 - missing setupsql.exe

    I have downloaded SP3 several times from Internet and it has always worked. But the problem you mention HAS happend to a colleuge of mine when he was doing...

  • RE: Re indexing a table

    boz: In SQL 7 it's not the default. What if, by design, you chose that another clusterization suited your needs better when the table was created?

    /Hans

    Edited by - hanslindgren on...

  • RE: Help me beat Excel - PLEASE!

    I believe that we all now have proved that we can make the calculations 🙂 But at this point I think the issue is DataStoring vs Dynamic calculations. Using a...

  • RE: Help me beat Excel - PLEASE!

    I believe that you still have to do these considerations when you are calculating your Performance, right? I mean even if you are doing storing, don't you have to take...

  • RE: Help me beat Excel - PLEASE!

    Thanks. For optimal performance, if you are just using dates in your table, consider storing them as INTs and in the view (when displaying them) converting them into DATETIME, in...

  • RE: Help me beat Excel - PLEASE!

    Depending on the size of the table, aren't you limiting concurrency with the storing of your calculations and huge updates? Why not just do the calculations when showing the data?...

  • RE: Help me beat Excel - PLEASE!

    Since the calculations are fairly simple why store them at all?

    Why not look into the performance of this:

    Your table (tbl):

    Day AS DATETIME

    NAV AS INT

    You make a View:

    SELECT TodaysTable.[Day],TodaysTable.[NAV],(TodaysTable.[NAV] - YesterdaysTable.[NAV])...

  • RE: Table creation

    Another way is to just drag & drop your table from EM to QA, that generated the full table structure and all the constraints as a CREATE TABLE statement. You...

  • RE: VB - Multiple Inserts - SQL Server 2000

    Thank you!

    Unfortunatly that is not really what I needed :/

    I probably expressed myself abit vauge. I meant more in the way of some of these:

    * Streaming XML inserts

    *...

  • RE: books online

    Maybe you should start off with a general course in databases. They help.

    Then try fiddling around with the control panel to find your administrative tools. Why don't you also look...

  • RE: No parameters and arguments were supplied

    Quoting BOL:

    quote:


    To run a procedure as an RPC

    Construct a SQL statement that uses the ODBC CALL escape sequence. The statement...

  • RE: books online

    Maybe you have a virus?

  • RE: No parameters and arguments were supplied

    Did you try the ODBC call instead of your 'exec StoredProc'?

  • RE: books online

    Try msdn.microsoft.com if you have problems with BOL (they exist in there to).

    Though if I remember correctly, BOL consists of more then one file...

  • RE: Departmentalizing Databases

    Omen: I believe you are talking about data warehousing and not DBs in general?

    Many times in OLTP processing you need different sets of data depending on the demands of the...

Viewing 15 posts - 481 through 495 (of 529 total)