Viewing 15 posts - 451 through 465 (of 491 total)
Tune the Instance PARAMETER first
===========================
Give Maximum RAM to SQL Server 12 GB
Set Maximum Worker Thread to 574 (Recommanded by Microsoft)
Set Boost SQL Server Priority
Set Network Packet size increase from 4096...
April 19, 2011 at 9:52 am
Install Oracle Instant Client for windows server 2008 64bit on the Server where SQL Server 2008 installed then create the DSN and then create the linked Server with OLE with...
April 19, 2011 at 9:37 am
PK understanding is PRIMARY KEY and if you see prefix like PK in a table indexes then its mean table have a PRIMARY KEY with clustered Index.when we create a...
April 19, 2011 at 9:22 am
Database Size ?
Log Size ?
you are taking backup as Network ,Tape or SAN
example
Network Backup like
\\servername\sharedfolder\filename
this storage is SAN , NAS or network path , IF this SAN did you...
April 19, 2011 at 9:01 am
Total CPU physical and logical ?
Total Ram ?
Total SQL Server RAM ?
OS 32bit or 64bit ?
check this query
Select st.text,sp.* from sys.sysprocesses sp
cross apply sys.dm_exec_sql_text(sp.sql_handle) st
where cpu >1000
order by cpu...
April 19, 2011 at 8:54 am
There is no difference betweem mdf and ndf,Its just for understanding this is PRIMARY file mdf and then others are SECONDARY like ndf, you can create mdf also both files...
April 19, 2011 at 8:43 am
create checkpoint then take log backup and then truncate log files
CHECKPOINT;
BACKUP LOG [TEST] ......
GO
DBCC SHRINKFILE('Log file 1 name',TRUNCATEONLY);
DBCC SHRINKFILE('Log file 2 name',TRUNCATEONLY);
GO
take orignal and final backup some other place then...
April 19, 2011 at 8:38 am
1-Backup and Restore most reliable
2-Bulk Insertion fastest
you want to copy in 1 go there is no need of log shipping
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP |...
April 19, 2011 at 8:30 am
dont create more files in a single head or single drive
|Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP | IBMCDBA
My Blog
April 19, 2011 at 6:33 am
check the SQL Server agent service account it is working or not if you are using domain account for this service
is SQL Server machine name is changed after DNS changed...
April 19, 2011 at 6:29 am
1-Take a full backup and restore this database with different name
2-USE SQL Server IMPORT/EXPORT Utility
3-Write a simple ETL process in SSIS(SQL Server Inegration Services)
4-If these are simple tables then use
INSERT...
April 19, 2011 at 6:15 am
First of all apply Service Pack of SQL Server 2008 if you are not using R2,If your Maintenance plan execute on the Integration Service of SQL Server so that could...
April 19, 2011 at 6:08 am
First of all you should know the Server specification as
TOTAL CPU physical and logical
TOTAL RAM
TOTAL SQL SERVER RAM
OPERATING SYSTEM Version and 32bit or 64bit
TOTAL drivers not Partition
INSTANCE tuning is...
April 19, 2011 at 5:59 am
Data Access Objects (DAO) is not properly registered.
-or-
One or more references are missing.
-or-
There is a utility database reference that is not valid.
-or-
You do not have the required permissions for required...
April 19, 2011 at 5:48 am
Default name and default port do not required to mention in the connection you can use (.),LOCAL and System name only
You should first check the connectivity on the same server...
April 19, 2011 at 5:43 am
Viewing 15 posts - 451 through 465 (of 491 total)