Viewing 15 posts - 4,696 through 4,710 (of 14,953 total)
To a very large extent, DR planning will depend on specific business needs, hardware availability, skillset availability, resources available/obtainable, and SLAs/SLRs.
Virtual machines can be part of a DR plan, but...
March 8, 2011 at 6:38 am
Koen Verbeeck (3/8/2011)
If a data load fails, the destination table can be truncated and the load can...
March 8, 2011 at 6:26 am
It looks to me like what you're looking for is something like this:
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T ;
IF OBJECT_ID(N'tempdb..#Rules') IS NOT NULL
...
March 7, 2011 at 3:11 pm
Try something like this:
select INumber, Name, PortNumber, min(Account) as MinAccount
from MyTable -- put your table name here, obviously
group by INumber, Name, PortNumber;
March 7, 2011 at 2:50 pm
Depending on the data types, you can either do this with a CTE and Row_Number trick, or with Min() and Group By.
What are the data types of the columns?
March 7, 2011 at 2:45 pm
Break it down a bit.
First, select the rows where Runout = 1 and Qty = 0, and use Exists to test if there is another row with the same Peg...
March 7, 2011 at 9:57 am
I used to work for a company that insisted on long-term planning. Every project had to include data on which strategic initiatives it was meant to forward, before it...
March 7, 2011 at 9:47 am
Sean Lange (3/4/2011)
March 7, 2011 at 8:54 am
SQLkiwi (3/4/2011)
Exciting day - just had my first Simple Talk article published:http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sql-server/
Haven't had time to read the whole thing yet, but it looks good so far.
March 7, 2011 at 8:45 am
Jeff Moden (3/4/2011)
March 4, 2011 at 11:57 am
James Goodwin (3/4/2011)
In your response you are assuming that the bureaucrat's job is to punish you. In truth the bureaucrat (who is, after all, just another office worker like...
March 4, 2011 at 11:10 am
Jeff Moden (3/4/2011)
stewsterl 80804 (3/4/2011)
"change the parameter to a table variable" - Brilliant!!! 😀Thanks!
If you get the chance, please, I'd love to see the code that you end up with...
March 4, 2011 at 10:55 am
Depending on what you're going to do with them, and if you're using SQL 2008 (as per the forum you posted in), you could probably use a single table-variable parameter,...
March 4, 2011 at 9:07 am
That will work as posted, but I bet what you're running into is passing a comma-delimited list as a single parameter and doing this kind of thing:
create proc MyProc
(@MyList varchar(100))
as
set...
March 4, 2011 at 9:05 am
Viewing 15 posts - 4,696 through 4,710 (of 14,953 total)