Viewing 15 posts - 181 through 195 (of 461 total)
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...
February 17, 2005 at 6:22 am
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...
February 17, 2005 at 4:00 am
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
February 17, 2005 at 1:12 am
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...
February 17, 2005 at 1:05 am
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...
February 16, 2005 at 3:04 am
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,...
February 16, 2005 at 1:02 am
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...
February 15, 2005 at 8:05 am
Consider the following:
declare @rowcount int
set @rowcount = 100
set rowcount @rowcount
select * from MyTable
February 15, 2005 at 2:12 am
No, Ansar,
The small 3 means the remark #3 under the table:
Database size | 1,048,516 TB3 | 1,048,516 TB3 |
Databases per instance of SQL Server | 32,767 |
February 15, 2005 at 2:07 am
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...
September 4, 2004 at 7:47 am
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...
September 4, 2004 at 7:35 am
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...
August 27, 2004 at 2:31 am
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...
August 26, 2004 at 2:36 pm
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...
August 26, 2004 at 2:31 pm
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....
August 26, 2004 at 2:19 pm
Viewing 15 posts - 181 through 195 (of 461 total)