Viewing 15 posts - 21,811 through 21,825 (of 26,484 total)
Not have tried to restore a copy only backup, ever, the only suggestion I have is to script it manually and see if that works.
March 24, 2009 at 12:49 pm
That one is easy, you make a slight change to the INSERT to the second table like this, based on my sample code earlier:
insert into dbo.TestTab2
select
TestID,
...
March 24, 2009 at 12:46 pm
notes4we (3/24/2009)
What if I have similar ID's for two rows.
For some instances, I have same ID's.
Two rows having one ID. I wish to group by...
March 24, 2009 at 11:50 am
I don't admit to Solaris often. The systems are expensive (even if reliable) and could easily be replaced with commodity servers running linux for a lot less.
It did give...
March 24, 2009 at 11:31 am
Depending on how you have the properties for SQL Server Agent set up, that history is most likely gone. If you right click on SQL Server Agent and select...
March 24, 2009 at 11:24 am
Steve Jones - Editor (3/24/2009)
I'd argue his real problem appears to be a lack of communication. He doesn't appear to understand how to frame a problem or question.
I'll agree, with...
March 24, 2009 at 11:15 am
Not a problem. I dealt with files from a Solaris box for years so it is sort of ingrained now. I didn't know that Mac used the CR...
March 24, 2009 at 11:13 am
Here is the thread where I think you will see what he is trying to do with mixing code. This is also the thread where he warned someone else...
March 24, 2009 at 10:56 am
Bob Hovious (3/24/2009)
So much for improving. Guess someone's going straight back on the blacklist.
I reluctantly reached that decision last week. I glanced at your link. ...
March 24, 2009 at 10:51 am
GilaMonster (3/24/2009)
RBarryYoung (3/24/2009)
Q: How many psychiatrists does it take to change a light bulb?
A: Only one. But it takes a very long time and the...
March 24, 2009 at 10:49 am
The following is test code. Look at it and adapt it as needed for your purposes:
declare @ClaimCat table(
Claims int,
Category char(2)
);
insert...
March 24, 2009 at 10:26 am
raghu (3/24/2009)
i have a proc which displays the result as
CLAIMS CATEGORY
12345 P1
42342 ...
March 24, 2009 at 10:10 am
It would help to see the actual code you are trying to replace. In addition changing from a cursor to a while loop doesn't really change much, it is...
March 24, 2009 at 10:09 am
foxjazz,
First, don't repost this thread, maybe we can get Steve to move it to a SQL Server 2005 forum.
Second, since you are using SQL Server 2005, please post future questions...
March 24, 2009 at 10:01 am
Viewing 15 posts - 21,811 through 21,825 (of 26,484 total)