Viewing 15 posts - 16 through 30 (of 120 total)
You can us my script. It even gets you column names also.
June 12, 2009 at 9:55 am
but i am successful in uninstalling the hotfix cu1. you can just goto add remove program and click the remove button. But the same remove button was not available for...
January 17, 2009 at 11:28 am
sql service service account should have write access to the folder.
January 7, 2009 at 7:28 am
I think your sql agent cache is not in sync with msdb database. You can check this by running
xp_sqlagent_notify 'D', null, Null, null, null.
This will dump what is there...
January 6, 2009 at 7:44 am
Is that indicator is just a color box or is that contaning any text.
can you please put singel character there and try.
January 2, 2009 at 4:58 am
Can you please run the maintenance plan to defrag if any tables are fragemented and then run the dbcc shrinkfile to reduce the size
January 1, 2009 at 1:00 am
After installation dont stop yourself by verifying the summary.txt in the location
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Hotfix. it should say all success
December 31, 2008 at 9:27 am
try this
SELECT 'UPDATE STATISTICS dbo.'+ table_name +' WITH SAMPLE 50 PERCENT'
FROM INFORMATION_SCHEMA.TABLES
where table_name like '%ScheduleDay%'
December 31, 2008 at 9:16 am
I think you previously worked in Oracle scripting or in VBSCripting or c,c++ like that. You should explicitly provide the values for variables when you are calling
December 31, 2008 at 8:51 am
This is the problem with xp_cmdhshell, here in your case i am able to see that your just calling the xp_cmdshell with file name without anyoperating system command(eg, del,...
December 30, 2008 at 6:59 am
But if you are not familiar with WMI or Powershell.
You can use
EXEC master..xp_servicecontrol 'QueryState', 'SQLServerAgent'
you can set a batch job for all your 100 servers and report the output...
December 29, 2008 at 4:04 am
It looks like your sql server security logins has a login Built\Administrators. Just remove that. But before removing ensure that you know sa password and add the service account exclusivly...
December 28, 2008 at 12:39 pm
you can also think of indexing the temp tables created. As soon as the data is pumped data into the temp tables you can create index on these tables. This...
December 28, 2008 at 12:18 pm
Viewing 15 posts - 16 through 30 (of 120 total)