Viewing 15 posts - 1,966 through 1,980 (of 2,894 total)
Dear halifaxdal, I cannot believe, that with visiting SQLServerCentral over 1000 times and accumulating almost 600 points you have never seen the aricle about posting questions... There is a link...
March 8, 2012 at 8:40 am
Do you want to send email only if Customer FirstName is changed?
What about Lastname?
What about other details?
If yes to any of the above two, what you email when few details...
March 8, 2012 at 8:30 am
Try to post your question as per following: http://www.sqlservercentral.com/articles/Best+Practices/61537/
and it will attract much more attention...
March 8, 2012 at 8:05 am
OTF (3/8/2012)
Eugene Elutin (3/7/2012)
March 8, 2012 at 7:39 am
Looks like OP managed to see my withdrawn solution, I wasn't quick enough to hit a button... :hehe:
March 8, 2012 at 7:28 am
GilaMonster (3/8/2012)
For the comma-delimited list, look in the scripts library here for a string split function. I'd then cross apply the function to the...
March 8, 2012 at 7:26 am
Solution withdrawn as per Gail's note:
Give it a try (Books Online has some good resources on recursive CTEs), if you get stuck post your code and we'll help further. Since...
March 8, 2012 at 7:18 am
tejdeep5107 (3/7/2012)
Hi jayanth,I already read that topic in msdn. Actually i need diagrammatic representation of sql server architecture.
I guess, you will need to draw it yourself. Found...
March 8, 2012 at 6:34 am
In order to achieve your requirement you will need to split the comma separated values.
Please read the following and create this very useful udf as per article:
http://www.sqlservercentral.com/articles/Tally+Table/72993/
There is no viable...
March 8, 2012 at 5:16 am
Gianluca Sartori (3/8/2012)
Yes, and it worked.I also tried many other horrible things with junctions, but that would be a whole different story. 😀
It's nightmare for free...
March 8, 2012 at 4:21 am
Mark-101232 (3/8/2012)
Here's another way
WITH CTE AS (
SELECT *,
ROW_NUMBER() OVER(PARTITION BY i_Number ORDER BY pk_ResId) AS rn
FROM #tbl_Duplicates)
DELETE FROM CTE
WHERE rn>1;
And it's a better...
March 8, 2012 at 4:19 am
Sagar Sawant (3/8/2012)
Thanks for the reply.
So I will post again and here is:
Table "tbl_Reservation" contains below rows.
CREATE TABLE #tbl_Reservation
(
...
March 8, 2012 at 4:15 am
Cannot see where exactly you're expecting a dead-lock.
May be if you follow: http://www.sqlservercentral.com/articles/Best+Practices/61537/
we may be more helpfull...
March 8, 2012 at 4:07 am
Gianluca Sartori (3/8/2012)
That way, the files would appear on both drives, but will physically...
March 8, 2012 at 4:02 am
Viewing 15 posts - 1,966 through 1,980 (of 2,894 total)