Viewing 15 posts - 181 through 195 (of 205 total)
I would add "Professional SQL Server 2008 Internals and Troubleshooting" to the list alongside Kalens book, I've been reading through it over the last few weeks and it is excellent.
April 1, 2010 at 10:37 am
If you are looking for a defrag script then I would recommend Michelle Ufford's at [/url] it does anything you could ever need.
April 1, 2010 at 10:32 am
Definitely follow Toby's advice in the first instance, if this does not work then can you tell us a little bit more about the installation process please?
Is this a named...
April 1, 2010 at 10:29 am
There are lot of differences between the two, but to help I need to better understand what replication topology were you thinking of and how were you thinking of using...
March 26, 2010 at 3:56 am
Hi Arif,
You're correct in that xp_Sendmail does have quite a few dependencies, I've not used CDOSYS before and thought that xp_Sendmail might be a viable alternative for you.
Rich
October 30, 2009 at 10:12 am
Are these DTS packages stored in the file system or in SQL Server itself?
If it's in SQL Server it might be worth running DBCC CHECKDB on the MSDB database.
Do you...
October 30, 2009 at 9:56 am
Shouldn't you be trying to extract the code from your source control system rather than the database?
October 30, 2009 at 9:50 am
I think you need to change the AddressNo attribute from FLOAT to VARCHAR .
This should fix your problem.
October 29, 2009 at 9:41 am
Did you type this in, or was this generated by the "Set values" tab in the step of the job?
October 28, 2009 at 11:43 am
October 28, 2009 at 10:59 am
Look into setting up a proxy account for SSIS this should help fix your problem. It will allow you to run the SSIS package under a different credential. A 5...
October 28, 2009 at 6:44 am
I believe it will be one implicit transaction. To be honest I would consider using SSIS for this kind of work for the kinds of voulme you are talking about.
October 28, 2009 at 6:04 am
It looks like you want to sum the results of your unioned query try something like this:
SELECT [State], SUM(Field1) [Field1], SUM(Total) [Total]
FROM
(select
state,
count(*) [Field1],
0 as total
from tAccount
AND datestamp >=...
October 28, 2009 at 5:52 am
A directors cut
I'm not sure if you can have a "bloopers" section in a written article, it would be an interesting challenge!
Maybe not in the article itself, but having a...
June 22, 2009 at 3:25 am
Viewing 15 posts - 181 through 195 (of 205 total)