Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)

  • RE: Edit Text in file before working with it

    I used this for my solution and seems to work just fine. We faced a problem with creating extract files that an Excel PowerPivot is to import and if the...

  • RE: financial year sql statement please help

    So is this a homework assignment? There are missing details here, like what is the type of accounting periods are they expecting, calendar based or something like a 4-4-5 accounting?...

  • RE: Calendar Tables

    Victor Kirkpatrick (7/15/2010)


    The key isn't random just because it's an identity, as long as when the records for the date table were created in the correct "month" order. And no,...

  • RE: Calendar Tables

    One thing I think could be improved is the key for the tables should not be a random key, I would suggest to use the date as the key. So...

  • RE: SQL Server 2005 - how so I create a linked server to Access 2007

    According to this post http://social.msdn.microsoft.com/Forums/en-US/sqlgetstarted/thread/589ca193-3541-4c5e-965c-4c515d6b476b/[/url] is suggests it will not work with SQLExpress.

  • RE: Query to match some fields out of many - HELP !

    The mutiple OR clauses will not always get you to hit indexes, so that is not a good idea.

    Kimberly Trip recommends to perform UNION ALL instead of OR statements.

    Otherwise...

  • RE: Putting all your data in one column of one table

    While I don't agree with the approach, and I have created survey apps that did not stuff everything in one column, there is the potential to store your data as...

  • RE: Fulltext Search Questions

    Normally to search different docs not included is to obtain an iFilter from the vendor. Adobe does have an iFilter that allows the full-text searching to crawl these files.

    I just...

  • RE: SOX

    We are using the Idera SQL Compliance product. It is able to run without having Admin permissions for the OS. The account that does the auditing does have to be...

  • RE: Remote Server Query

    The prior was an example for SQL 2000, I noticed you wanted something from SQL 2005, so here is a different example. There are new views that make it easy,...

  • RE: Remote Server Query

    Here is a quick example of how you might do something like what you want to do:

    DECLARE

    @ServerName NVARCHAR(128)

  • RE: Date formatting

    You can use the built in function DAY(<your date> ), MONTH(<your date> ) and YEAR(<your date> ).

  • RE: linked server between SQL2005 and SQL2000 not working

    Did you install the SQL Native client on your 2000 box? I have linked servers between 2005 and 2000, but we did not install the native client on the 2000...

  • RE: Problems with ldf file

    When you strink a log you want to ensure the size makes sense, don't shrink it all the way down to where no data is. The log will grow as...

  • RE: Problems with ldf file

    Did it take 3 months to determine the table was missing? If you knew right away, then you could have just restored the database to a different database and then...

Viewing 15 posts - 1 through 15 (of 18 total)