Viewing 15 posts - 19,186 through 19,200 (of 19,564 total)
Grant Fritchey (11/9/2009)
Jeff Moden (11/8/2009)
Jack Corbett (11/7/2009)
Grant Fritchey (11/7/2009)
November 9, 2009 at 10:13 am
Just downloaded the SQL MVP Deep Dive book. Now for some light reading over the weekend.
Woot :w00t:
November 6, 2009 at 6:49 pm
Try loading the date from the header into a variable and then add a data transformation task for a derived colum. The value in the derived column that you...
November 6, 2009 at 1:46 pm
Another method is to setup a scheduled job to copy them to another location (commonly a central location for log files) that is firewalled, protected and on an encrypted file...
November 6, 2009 at 10:04 am
Those aren't server roles. Those roles are Database roles within the MSDB database. You will need to grant the user access in the msdb database and then add...
November 6, 2009 at 9:54 am
I typically do it from the file system and haven't tried to do that directly from the msdb store.
November 6, 2009 at 9:48 am
Jpotucek (11/6/2009)
November 6, 2009 at 9:46 am
What are the results of the following queries?
DECLARE @db_id TINYINT
SELECT @db_id = DB_ID('northwind')
SELECT page_latch_wait_count, page_latch_wait_in_ms, page_io_latch_wait_count, page_io_latch_wait_in_ms
5.
FROM sys.dm_db_index_operational_stats (@db_id, null, NULL,...
November 6, 2009 at 9:35 am
is there any chance they are running this job even though it is disabled? Maybe some other job calls this job, or some code somewhere calls and executes this...
November 6, 2009 at 9:20 am
Luke L (11/6/2009)
jcrawf02 (11/6/2009)
So then we've finally found a definitive benefit of RBAR - environment control
Jeff's gonna be pissed...
Though I suppose if you get it to raise the temps enough...
November 6, 2009 at 9:17 am
chill, socialize, and fly home.
November 6, 2009 at 9:14 am
If you don't have the sln, create a new project. Once the project is created and open, right click packages from solution explorer, select add existing package. This...
November 6, 2009 at 9:07 am
Open the package from within BIDS.
It is safest to try to do it when opening the .sln file instead of the .dts file that was exported from SQL Server. ...
November 5, 2009 at 11:41 pm
This is a common behavior for which the only solution, I have been able to get to work or seen posted on the net as a solution, is to use...
November 5, 2009 at 11:36 pm
within a single script task you could use the if exists condition and then perform an insert if records exist from that table
if exists (select tableid from tablea)
begin
...
end
else
if exists...
Otherwise you...
November 5, 2009 at 11:32 pm
Viewing 15 posts - 19,186 through 19,200 (of 19,564 total)