Viewing 15 posts - 226 through 240 (of 461 total)
Thanks Luis for reply.
My only problem, that I do not want to develope an RDBMS for CE and actually there is already an SQLCE database. Even tough I could replace...
March 23, 2004 at 2:50 am
Basically what I want is to see and optimize the database within the emulator. Once it's fine I have to copy ot to the device.
My problem is that I don't...
March 23, 2004 at 2:10 am
A quick and dirty solution: fire them out of the SQL Server agent. There you can define the same execution start time so their will fire (more or less) at...
March 12, 2004 at 2:46 am
A question formulated like this is very difficult to answer.
You have to check a lot of parameters while you app is running slowly:
March 12, 2004 at 2:40 am
I've got more or less the same problem some months ago.
Check out the collation settings.
If the server default collation differs from the database collation or from the column collation you...
March 5, 2004 at 11:39 am
We have got Peregrine ServiceCenter.
From the principle it's the same. It is ganarating the indexes itself..
As it was quite poorle defined I've put some additional indexes on and have removed...
March 5, 2004 at 11:35 am
Some of the monitoring you can do by yourself too before buying any expensive tools.
First of all let's check the defragmentation's status (dbcc showcontig) of your database...
March 5, 2004 at 11:15 am
Just a small question:
How are you handling the different datatypes (eg. int, datetime money etc..) what you application would require?
Either you will use several columns of each required datatype (it...
March 5, 2004 at 10:02 am
Thanks for reply.
In this case how can I do the development using my emulator.
It must be feasible somehow because within embedded VB there is a condition "IsEmulator" which checks if...
February 19, 2004 at 1:45 am
You can do the same with MSSQL too
You can query the sysindex table to get the space usage informations, so you can define the filter criteria you want.
Have a look...
February 9, 2004 at 3:03 am
In this case I would suggest to you to reindex and/or update the statistics.
You could also check how many rows you have for 01/01/04 and how many for 02/04/04
February 9, 2004 at 2:55 am
Of cours you have to test it.
In addition to that my suggestion is the following:
If you have a lot of small concurrent transactions then a quad proc is better, if...
February 9, 2004 at 2:50 am
Check if you have the same indexes.
Special attention should be made on the clustered index.
Reindex all of the indexes of your table with dbcc dbreindex.
This should reduce the size dramatically...
January 31, 2004 at 3:17 am
I usually bcp (or bulk insert) into a view when the file has fewer columns than my original table and I do not want to create a work table to...
January 31, 2004 at 2:49 am
A lot.
You can check the overall cache hit ratio, processor, disk and RAM usage, number of connections, deadlocks, number of full scans, file size grow (or even worse file shrink) during operational...
January 23, 2004 at 1:08 am
Viewing 15 posts - 226 through 240 (of 461 total)