Viewing 15 posts - 406 through 420 (of 5,103 total)
Watch out for SQL 2005 has issues with ORDER BY in the definition of the views!
February 25, 2009 at 2:43 pm
dva2007 (2/25/2009)
it does look like
"1,"company name","this is a description,company in USA"
But in bulk insert the field terminator is "," so it is getting confused at description where it finds...
February 25, 2009 at 11:53 am
Chad Crawford (2/25/2009)
The job doesn't have to be scheduled. I did something like this with replication where the post-replication script just runs sp_start_job 'JobName'
I thought about that, but was...
February 25, 2009 at 11:51 am
Things are applied depending on how "critical" they are for you. At least that's our case 😀
February 25, 2009 at 10:36 am
Correct. Increasing the size is just a metadata operation. Reduce it and you could be in trouble 😉
February 25, 2009 at 10:08 am
1) The above error message only due to the MSDTC Service started late?
Yes.
I have experienced it in the past . I am 100% 2005 now and it has been a...
February 25, 2009 at 7:49 am
Follow the links on the tutorial: http://msdn.microsoft.com/en-us/library/aa337389(SQL.90).aspx
February 24, 2009 at 10:45 pm
Follow the links: http://msdn.microsoft.com/en-us/library/aa337389(SQL.90).aspx
February 24, 2009 at 10:42 pm
One question none asked was if they used EE on all those DB servers... Sounds like a lot of licences ($$$$)!
February 24, 2009 at 10:36 pm
Paul (2/24/2009)
"SQL Server Flying Pigs" version - one that does everything you want/need without crashing.
I like than one!
February 24, 2009 at 8:30 pm
Not only we restore *all* our backups we run checkdb and data_purity checks on all our "main" user databses as frequent as possible. It is all automated and when something...
February 24, 2009 at 8:17 pm
it does not really matter if the LOB is in-row or not. if there are LOB columns you hit the limitation.
February 24, 2009 at 7:50 pm
Louis Kapp (2/24/2009)
I tried to use it to run two jobs and for some reason the second one starts before the first one...
February 24, 2009 at 7:47 pm
What happens when you run UPDATE STATISTICS {tablename} WITH FULLSCAN ?
February 24, 2009 at 7:43 pm
Louis Kapp (2/24/2009)
So to run two jobs consecutively would I do something like this?
USE msdb ;
GO
EXEC dbo.sp_start_job N'Job_1' ;
GO
EXEC dbo.sp_start_job N'Job_2';
GO
Or would I put each...
February 24, 2009 at 4:59 pm
Viewing 15 posts - 406 through 420 (of 5,103 total)