Viewing 15 posts - 601 through 615 (of 761 total)
Nothing could be better than having all the data in one server. Both Linked Servers and coding from the front end would be more or less the same in terms...
April 26, 2012 at 6:50 am
Larry Page(Ehsan.Akbar) (4/26/2012)
in fact my servers have different subset of data ,so you think i should use linked servers?
Yes, I think you should use Linked Servers. Replication is when you...
April 26, 2012 at 6:39 am
ChrisM@Work (7/26/2011)
DECLARE @WordToCheck VARCHAR(30) = 'SQL SERVER'SELECT Letter, COUNT(*)
FROM(
SELECT Letter = SUBSTRING(@WordToCheck, n.n, 1)
FROM (SELECT TOP 30 n = ROW_NUMBER() OVER(ORDER BY [Name]) FROM sys.columns) n
WHERE n.n <= LEN(@WordToCheck)
) d
WHERE...
April 26, 2012 at 5:41 am
*btw: Is there a way to boost your point up thru your answer? I'm kinda new here in this forum.
What point?
April 26, 2012 at 4:40 am
brally123 (4/26/2012)
I'd would like to ask some help from you gurus here 🙂 I'm fairly new in this so please forgive me.
I have two tables:
--------------------------------
| ...
April 26, 2012 at 4:10 am
This particular OP give me the feel that he/she thinks that he/she owns us. :angry:
Read a lot of posts from him/her. Its the same everywhere.
No Offense Riya Dave. Just what...
April 26, 2012 at 3:48 am
Thanks Eugene.
As simple it may be....but that was what I was looking for. 😎
Thanx for all the replies. Just climbed up a few steps on the learning curve and its...
April 26, 2012 at 3:26 am
Thanks Eugene.
As simple it may be....but that was what I was looking for. 😎
April 26, 2012 at 3:20 am
Run the profiler as a server side trace to know all user and server activities
April 26, 2012 at 3:08 am
The way I work allows me to get this down long before I start coding.
Step 1. I start with pen and paper and jot down a few algorithms. Normally, I...
April 26, 2012 at 2:45 am
capn.hector (4/25/2012)
method 1. one its bad to share passwords. what happens when some one leaves?? you have to change the password and that can get anoying. and...
April 26, 2012 at 1:28 am
Thanx again Dwain.
You're examples were very helpful and have definitely taught me some ne stuff. As far as the Dynamic SQL part goes....you can't have everything always...right??
There are uses for...
April 26, 2012 at 1:15 am
SQLKnowItAll (4/25/2012)
vinu512 (4/24/2012)
MAAAAN!!!!...He really knows it all....lol 😀+1 SQLKnowItAll....I agree.
Hehehehe... I certainly don't! Of course, that's what makes it a clever name for my blog. Anyone want to buy...
April 26, 2012 at 12:34 am
Viewing 15 posts - 601 through 615 (of 761 total)