Viewing 15 posts - 856 through 870 (of 2,612 total)
If that does not work (presumably because the services were not closed correctly before the file was deleted), there is a recent article that has an approach to doing this:
http://www.sqlservercentral.com/articles/Disaster+Recovery/63311/%5B/url%5D
If...
August 4, 2008 at 6:05 am
I would question how much digging is actually legal. With the laws around hiring practices, I think even googling someone's name would run a very high risk of returning...
August 1, 2008 at 7:44 am
SSIS is very data type sensitive. My guess is that your source data is a different data type. It can be something as simple as your source is...
August 1, 2008 at 4:55 am
You have to add it to the GAC also.
August 1, 2008 at 4:39 am
The 10g oracle client is not 100% OLEDB compliant. I am sure it is not the only client version with compliance issues. It has caused the same issue...
July 31, 2008 at 12:38 pm
That's the generic "cannot connect" message. Ignore all of the extra wording, it just means that when the connection attempt was made, the server could not be contacted.
Since it...
July 31, 2008 at 12:11 pm
You can start a job using msdb.sp_start_job
July 31, 2008 at 6:14 am
Did you add it to your toolbox items?
Go to Tools -> Choose Toolbox Items in the menu.
July 31, 2008 at 6:13 am
You also have to make sure your exchange server is configured to allow you to use it as an SMTP relay. I think, by default, it allows relay to...
July 30, 2008 at 1:08 pm
Like Gail said, these hints have some awful side-effects. NOLOCK in particular can result in missed or even duplicated data as your query reads through the pages.
I have found...
July 30, 2008 at 12:21 pm
Basically, the answer is No, No, and No.
Putting files and partitions on different drives is to get additional read and write heads from the physical disks that do not interfere...
July 30, 2008 at 12:17 pm
Just beware of it.
It ends up pretty slow because it typically ends up with a looping cursor in the background - so it is row-by-row processing.
But in cases of recursion...
July 30, 2008 at 11:59 am
I think the original post was wrong.
If you look at the diagram and the data, 40 and 60 are children of 30 and 50, not in the path we are...
July 30, 2008 at 11:47 am
You can use a recursive CTE.
I had to use a UNION to go back up the tree, but this seems to have worked,
[font="Courier New"]CREATE TABLE #t (PID INT, ParentID INT,...
July 30, 2008 at 11:32 am
Look up sp_Attach_db in books online. It is common practice to attach a database from another instance. I do it regularly. I have not tried to detach...
July 30, 2008 at 11:06 am
Viewing 15 posts - 856 through 870 (of 2,612 total)