Viewing 15 posts - 91 through 105 (of 145 total)
1) which edition of sql you are running ?
2) maybe you should read this: http://support.microsoft.com/kb/918483/en-us
and you may need this:
there are some problems with swaping sql's...
September 7, 2009 at 12:01 pm
can you show us your clustered index ? if the key is Id - maybe it shouldn't - it depends on your queries
i think that you should create following index:
create...
September 7, 2009 at 11:53 am
sory but what does it mean: "lakhs" ?
September 7, 2009 at 11:39 am
maybe you can use Transactional Replication ?
September 7, 2009 at 11:36 am
this will be very hard achive this goal ;/
in SQL 2008 you can use CDC/CDT (Change Data Capture or Change Data Tracking) - maybe you can use these?
September 7, 2009 at 11:34 am
yes - there is a simple way to do that 😉
1) create a script to backup your database
2) learn how to use osql to fire it
3) use task...
September 7, 2009 at 11:29 am
why not a ssms ? its really nice pieace of software ?
September 7, 2009 at 11:22 am
fragmentation in which layer? files on file system or objects in database?
September 7, 2009 at 11:18 am
Do you have problems with disk space ? If not you only need to execute some index rebuilds and nothing more.
If you have disk space problem .... threre are no...
September 7, 2009 at 11:14 am
creating objects on your new filegroup looks like this:
create table MyGreatTable (i int) on MyGreatNewFileGroup
September 7, 2009 at 11:09 am
Sergiy - the paragrah you mentioned change nothing. hash is a hash - and for a given string should always return the same value. did you try to run his...
September 7, 2009 at 10:51 am
Paul ... but here you have a "special" index on field: any_date_year AS YEAR(any_date) so 😉
but sql can handle with this optimization in very elegant way - it is...
September 7, 2009 at 10:47 am
Paul White (9/6/2009)Best practice is to respect the parameter data types to avoid implicit conversions as far as possible:
EXEC [dbo].[sp_BackupAllFull]
...
September 7, 2009 at 10:34 am
You should read this position too: Tuning IBM System x Servers for Performance you can find there a lot of information about hardware, Windows and SQL Server. I always recommend...
September 7, 2009 at 10:31 am
Viewing 15 posts - 91 through 105 (of 145 total)