Viewing 15 posts - 5,251 through 5,265 (of 14,953 total)
I'd try doing a copy-only backup first. If that fails, then it'll probably be a matter of table-by-table data copying. SSMS for SQL 2008 has features for scripting...
January 24, 2011 at 8:41 am
WebTechie38 (1/21/2011)
January 24, 2011 at 8:29 am
Are you using something like OpenRowset to query Excel? Or a linked server? How are you doing it?
You should be able to use a derived table, or CTE,...
January 21, 2011 at 2:11 pm
Jeffrey Williams-493691 (1/21/2011)
In...
January 21, 2011 at 2:09 pm
It's very possible. It should be automatic, unless you have the transactions defined incorrectly.
I'd have to see more of the procedure code to help more.
January 21, 2011 at 2:08 pm
The For...Each loops in SSIS can specify that they are for each file. There's an option for including subfolders.
January 21, 2011 at 1:21 pm
Craig: If I were in the job market, that's one I would apply for. If that helps.
January 21, 2011 at 1:20 pm
Can you create a Validations DLL file using .NET studio and pass the data through that?
January 21, 2011 at 12:48 pm
Does the data on this page help: http://www.sqlsecurity.com/FAQs/SQLServerVersionDatabase/tabid/63/Default.aspx
January 21, 2011 at 12:46 pm
Looks like it might be a PHP problem. Have you tried asking on a site that focuses on PHP?
January 21, 2011 at 12:42 pm
Are you familiar with "being transaction" and "commit"/"rollback"?
If you issue a rollback command, it will roll back the WHOLE transaction, including both the nested procedure and the outer procedure.
January 21, 2011 at 12:40 pm
select Col1
from MyTable
union all
select Col2
from MyTable
Union statements will do that very easily. There are more complex methods, but this one is easiest.
January 21, 2011 at 12:39 pm
Brandie Tarvin (1/21/2011)
Does the job description necessarily have to = the classified ad?
Sure, the legal department wants to cover the company by having everything in the job description, but...
January 21, 2011 at 12:22 pm
Viewing 15 posts - 5,251 through 5,265 (of 14,953 total)