Forum Replies Created

Viewing 15 posts - 181 through 195 (of 462 total)

  • RE: Should I use XML?

    If you give me the format of the file you want to insert to the database (and maybe the table's DDL you want to insert in) I will tell you how...



    Bye
    Gabor

  • RE: Should I use XML?

    BCP = Bulk Copy

    This is an external exe file (coming with SQLServer. You can find it in the C:\Program Files\Microsoft SQL Server\80\Tools\Binn in a standard installation. More or less the...



    Bye
    Gabor

  • RE: Openquery and using variables

    I think also that dynamic SQL is the solution with a string contructed and executed with either a four part naming or an openquery syntax



    Bye
    Gabor

  • RE: Should I use XML?

    Jim,

    As far as I know the GPS devices are sending their data in a row format what you have to transalate first to XML and the import to SQLServer.

    I wouldn't...



    Bye
    Gabor

  • RE: How to determine the table name within a trigger

    I think partinioned view would be the best solution for your problem as it distributes automatically the data across the table. One problem will still exist: you have to define...



    Bye
    Gabor

  • RE: Capacity of SQL server

    To ba able to provide you with right advisis first I have to lnow the type of queries you want to execute against the database.

    Primary key are of course important,...



    Bye
    Gabor

  • RE: Capacity of SQL server

    No problem.

    It will accomodate. It depends only on the hardware you are using.

    We have for example some quite large SAP databases (over 400 GB each) where the biggest tables have...



    Bye
    Gabor

  • RE: SELECT TOP X by using dynamic SQL

    Consider the following:

    declare @rowcount int

    set @rowcount = 100

    set rowcount @rowcount

    select * from MyTable

     



    Bye
    Gabor

  • RE: Capacity of SQL server

    No, Ansar,

    The small 3 means the remark #3 under the table:

    Database size1,048,516 TB31,048,516 TB3
    Databases per instance of SQL Server32,767



    Bye
    Gabor

  • RE: Speed difference between Sps

    David,

    As there is no where clause in your main query you will have a full table scan.

    What I would do is to create a clustered index on the INCIDENT_DETAILS table...



    Bye
    Gabor

  • RE: PAGING? Is there something similar to MYSQL "LIMIT"

    Or you can use the top clause with an order by. You just have to remember the last data shown.

    This is and addition to Davif Pool's solution

    So you query could...



    Bye
    Gabor

  • RE: Converting varchar dates to datetime

    Look I'm in Hungary and we use the Hungarian format (yyyy.mm.dd) and I was running some French companies as well.

    SQLServer has really some predefied format where you don't have to...



    Bye
    Gabor

  • RE: Severe but intermittent performance problem

    What I would check is the indexes and the fragmentation via DBCC SHOWCONTIG at the first glance.

    Also try to trace the file loading processes.

    I don't know what you are doing...



    Bye
    Gabor

  • RE: Hardware raid Configuration

    Raid5 is suitable for low cost and mainly read only applications as every write operation needs to calcul the parity to be written to the parity disk.

    Read operation can be...



    Bye
    Gabor

  • RE: Converting varchar dates to datetime

    as long as you are using some predefined date format from TSQL you couldn't cast it.

    But if you are not sure about the format cast it or better convert it....



    Bye
    Gabor

Viewing 15 posts - 181 through 195 (of 462 total)