Forum Replies Created

Viewing 15 posts - 2,431 through 2,445 (of 2,452 total)

  • RE: is there a way to view linked tables in access from a linked server connection on the sql server?

    Hi Andrew

    I am assuming that you are using Access to view a SQL database via linked tables and that on the SQL server you have created a linked server to...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Linked Server question...

    Hi...update

    solved the problem by using the variable in OPENQUERY against the linked server.

    this issue only appeared to manifest against large source tables (>1M rows)....still dont know why, but the...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Building Report server for sharepoint?

    Hi

    We are trying a similar project..SQL2005 (Std), SSRS and WSS3 SP1 on Windows2008 (32-bit)...so far unsuccessfully.

    Here is a link that you might find useful:

    http://blogs.msdn.com/sharepoint/archive/2007/08/02/microsoft-sql-server-reporting-services-installation-and-configuration-guide-for-sharepoint-integration-mode.aspx

    and the Word doc is here:

    http://blogs.msdn.com/sharepoint/attachment/4194088.ashx

    If...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Installing SSRS and Sharepoint on stand alone server

    Hi Jerry

    Thanks for your thoughts.....and yes we have been reading and searching:)

    SQL 2005 SSRS also has a SharePoint Integration Mode ......you also need to download the reporting services add in...will...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Inner query to get Max(Date) on download type with multiple status codes

    Jason...you can get the same result using your timestamp

    SELECT tm.Business_unit_id, tm.Download_Type, tm.transmit_status_code,TM.Transmit_Timestamp

    FROM Transmit_Manifest TM

    INNER JOIN

    (SELECT MAX(Transmit_timestamp) AS MaxTimeStamp

    FROM Transmit_Manifest

    Where download_type = 'A'

    GROUP BY Business_unit_id ) MAXTIME

    ON TM.Transmit_Timestamp=MAXTIME.MaxTimeStamp

    gah

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Inner query to get Max(Date) on download type with multiple status codes

    SELECT tm.Business_unit_id, tm.Download_Type, tm.transmit_status_code,TM.Transmit_Timestamp

    FROM Transmit_Manifest TM

    INNER JOIN

    ...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: FK's...do they improve query performance

    Thank you Gail.

    I thought as much, but needed some clarification.

    Will probably create them now anyway as they will assist other users in understanding the schemas.

    Graham

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Extended Column attributes

    Hi Richard

    I was interested to read your post because we are considering building a solution that sounds similar to yours.

    I have a system developed using sql 2005. It allows users...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: SQL 2005 std.edition 64 bit on Windows Server 2008 std. 64 bit

    make sure that any 3rd party ODBC drivers you intend to use are 64-bit.

    You can install 32bit drivers on Win64 (odbcad32.exe)..but SQL64 will not be able to use them.

    regards gah

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: AWE enabled yes or no?

    Thank you very much Marios...that has clarified it.

    regards gah

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: AWE enabled yes or no?

    Thanks for the reply Marios

    - enable AWE to max memory of 4 GB, to enable the data buffer of your SQL instance to 'see' 4 GB of memory and leave...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: AWE enabled yes or no?

    Apologies if I should have created a new topic....

    Having read thro this thread and a multitude of others on here and elsewhere, I must confess to still being confused....

    We need...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: using 32-bit ODBC driver on 64-bit system

    Thanks for the info, it is appreciated.

    regards gah

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: using 32-bit ODBC driver on 64-bit system

    jgrubb (10/29/2008)


    There should be 64 bit options for progress. Progress should support it, and I used to work for Openlink http://www.openlinksw.com which did support it with a choice...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Routine to get index details

    Hi

    I havent tested the code but the comments posted against the artice say

    "usp_GetIndexKeys should have been usp_GetIndexColumns"...that script is there in the post.

    gah

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

Viewing 15 posts - 2,431 through 2,445 (of 2,452 total)