Viewing 15 posts - 406 through 420 (of 491 total)
lets try with recent updates of this release like service packs and CUs
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA
My Blog
April 23, 2011 at 3:47 am
Hey Ninja Turtle,you are again talking about non sense and stupid but why Ninja Turtle why
I'll be listening on this thread... I've had that problem once on sql 2000 a...
April 23, 2011 at 3:38 am
overhead on the same database
Database snapshot fetch the data from the primary database,It will affect the performance of the database and overall performance of the server
Regards,
Syed Jahanzaib Bin Hassan
MCTS |...
April 23, 2011 at 12:41 am
1-Total physical or logical Processor ?
2-How much RAM allocated for the SQL Server in SQL Server ?
3-Operating System version and bit
4-SQL Server bit
5-Set MAX_WORKER_THREADS ?
6-Set Cost of Threahold ?
7-Set MAXDOP...
April 23, 2011 at 12:34 am
SELECT ServerProperty('LicenseType') as LicenseType, ServerProperty('NumLicenses') as ProcessorCount
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA
My Blog
April 23, 2011 at 12:27 am
you can define REMOTE QUERY TIME OUT and REMOTE LOGIN TIME OUT in SQL Server and also in SQL Server SSMS query analyzer
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA...
April 23, 2011 at 12:21 am
USE [MASTER]
GO
ALTER DATABASE REPORTSERVER SET OFFLINE WITH ROLLBACK IMMEDIATE;
GO
then restore it
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA
My Blog
April 23, 2011 at 12:13 am
CREATE TABLE DBINFO(ID INT IDENTITY(1,1) PRIMARY KEY
,DBNAME VARCHAR(200)
...
April 22, 2011 at 11:53 pm
CREATE TABLE DBINFO(ID INT IDENTITY(1,1) PRIMARY KEY
,DBNAME VARCHAR(200)
...
April 22, 2011 at 11:20 pm
1-Define MAX Memory parameter at least 24 GB
2-You have define Max Degree of Parallelism to 8,This will define as 2 because its depend on physical processor not on logical
3-Set MAX...
April 22, 2011 at 10:58 pm
Every index should be rebuild or reorganize as per requirement,you can check the avg_frag_percentage in a dynamic management function
SELECT * FROM SYS.DM_DB_INDEX_PHYSICAL_STATS(DB_ID('DATABASE NAME'),,NULL,NULL,NULL,NULL);
When we Rebuild indexes when avg_frag_percentage...
April 22, 2011 at 10:23 pm
If you are using SSMS query analyzer then this will not come you can manage this also in
SSMS->Tools->Option->Query Execution
Second thing is you can change query time out at the sql...
April 22, 2011 at 4:24 am
Try in the end of complete query
OPTION (MERGE JOIN)
or
OPTION(MAXDOP 2) --Its depend on the available Processors in the Server
create temp table for data you want to filter then join...
April 22, 2011 at 4:17 am
http://msdn.microsoft.com/en-us/library/ms191278(v=sql.90).aspx
bounce the sendmail
master..xp_stopmail
go
waitfor delay '0:00:05'
go
master..xp_startmail
go ...
April 22, 2011 at 4:14 am
whats the problem with you guys,I dont know why guy interrupting me,do your own work
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA
My...
April 22, 2011 at 4:04 am
Viewing 15 posts - 406 through 420 (of 491 total)