Forum Replies Created

Viewing 15 posts - 5,341 through 5,355 (of 5,356 total)

  • RE: SQL Server 2000 install

    Hi,

    are you sure you have the appropriate rights to install on the network?

    I remember having these problems. To install mdac you must be least local admin I think.

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Insert Trigger

    Hi,

    I don't think the VB app "knows" anything about the trigger.

    This is SQL Server internal. So the connection will likely not wait till the trigger is finished. If you...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Right Character Truncation

    Hi,

    are you doing this within a transaction? If so, could it be that you need to reset the Err.Object to 0 before updating the table?

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: database

    hi,

    a good starting point is DBCC CHECKDB <db_name> Also take a look at DBCC in BOL.

    Good luck

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: How to get Quaterly Data from the Query

    Hi,

    why not use a combination of DATEPART(quarter, <your_field>), and sum

    like

    SELECT DATEPART(quarter, period) AS Quartal, Sum(composite) as Summe

    FROM ....

    GROUP BY DATEPART(quarter, period)

    ORDER BY ...

    This assumes that period is a...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Database Updates

    If you back up your log-files, maybe you can have a look at the size of the files.

    I back up log files each hour. If nothing happens to the db...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Select last N record

    an identity field seems to be always a good choice (at least as primary key).

    do you want to select the last 10% records added to the table. maybe...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: How to store PDF file

    Hi,

    there are many pros and cons about storing binary data in a db vs. using the filesystem and I have seen on other forums quite philosophical discussions about this. I...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Zipping Files

    Take a look at 'xp_cmdshell' in BOL This should be what you need

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Help me beat Excel - PLEASE!

    It is getting REALLY interesting, when you're playing with DDE and realtime quotes and calculations and databases }:-) You can get very easily a server down to its knees. That's...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Help me beat Excel - PLEASE!

    Hi,

    I'm working as an asset manager for an insurance company. We're doing a lot of performance calculations and from my experience this is a classical case for a spreadsheet application....

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: ndf

    We have about 50 GB on a RAID 5. No problem so far

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: ndf

    I think, it only makes sense when you place the secondary files on different harddrives to improve performance by reducing reads/writes

    Cheers,

    Frank

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Auditing Your SQL Server - Part 2

    Sorry, if I expressed myself unclear. The following is an excerpt from BOL

    ...Two special tables are used in trigger statements: the deleted table and the inserted table. Microsoft® SQL Server™...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

  • RE: Auditing Your SQL Server - Part 2

    I'm also using triggers for insert and update (delete is not permitted) to audit changes to certain tables. But I'm using the inserted and deleted Tables. Are there any advantages...

    --
    Frank Kalis
    Microsoft SQL Server MVP
    Webmaster: http://www.insidesql.org/blogs
    My blog: http://www.insidesql.org/blogs/frankkalis/[/url]

Viewing 15 posts - 5,341 through 5,355 (of 5,356 total)