Viewing 15 posts - 286 through 300 (of 492 total)
First check the same query on the server side SSMS(SQL Server Management Studio)
if resposnse is good then check the query on the client side with the SSMS(SQL Server Management...
May 10, 2011 at 12:34 am
Give SQL Server Agent service account rights to access the particular file on the Server
May 10, 2011 at 12:25 am
you can configure multiple email accounts on SQL Server Database Mail and then send emails with different email account at a time
May 10, 2011 at 12:23 am
How much database size ? best way is to take a backup and then restore on another server
you have to define the sharing path of the source database files as...
May 10, 2011 at 12:17 am
check SQL Server services account ,these service accounts have administrative rights
May 9, 2011 at 12:42 am
yes this report also available at the same process which one i have mentioned in the previous answer
May 9, 2011 at 12:39 am
Machine is Server Class or Desktop Class ? watch your RAM continously and check twice at which level OS restart it , if at the same level then RAM is...
May 9, 2011 at 12:34 am
check the SQL Server instance and agent service account are enable or these service accounts have administrative rights or not ?
May 9, 2011 at 12:28 am
Thats why I was asking about database purpose or load on it, check it my second statement with question mark if you guys can see
May 9, 2011 at 12:26 am
you have to use SQLCMD for multiple scripts
SQLCMD syntax
sqlcmd -s ipaddress or DNSname -U username -P password -i "f:\script\executor.sql" -o "f:\script\output.txt"
open notepad and write this command as your requirement...
May 7, 2011 at 8:42 am
For Resource Governor information
http://msdn.microsoft.com/en-us/library/bb933866.aspx
Example
CREATE FUNCTION My_Classifer_func()
RETURNS SYSNAME WITH SCHEMABINDING
BEGIN
--workload definition based on login names
DECLARE @WorkLoadName sysname
IF SUSER_SNAME()= 'admin'
BEGIN
SET @WorkLoadName='AdminUsers';
END
--workload definition based...
May 7, 2011 at 3:56 am
SELECT create_date
FROM sys.databases
WHERE name='tempdb';
you can check with Tempdb because tempdb recreate when SQL Server service started and then create a sample table with datetime column only and schedule it on...
May 7, 2011 at 3:47 am
Just right click on the Instance and then generate the SCHEMA CHANGES Report as shown in the figures
May 7, 2011 at 3:21 am
Do you have any changes in the backup plan like TAPE backup running at the time of your maintenance plan ?
Check the Schedule time of Backup and Maintenance plan job...
May 7, 2011 at 3:15 am
Your autogrow increment must be large enough to avoid the performance penalties.The exact value to use in your configuration setting and the choice between a percentage growth and a specific...
May 7, 2011 at 3:00 am
Viewing 15 posts - 286 through 300 (of 492 total)