Viewing 15 posts - 6,691 through 6,705 (of 7,636 total)
Simon Doubt (6/9/2008)
You're the man!Thanks so much - I really appreciate it.
-Simon
Funny, my kids call me "The Man" also, but I don't think it's a compliment when they say it.
June 9, 2008 at 3:09 pm
Not sure what you mean. SQL-server never reformats my procedures and views.
Can you give a step-by-step example?
June 9, 2008 at 3:06 pm
Like this:
INSERT RemoteTable (CompanyID, CategoryID)
SELECT CompanyID, CategoryID
FROM LocalTable AS LT
WHERE NOT EXISTS (SELECT * FROM RemoteTable RT
WHERE Rt.CompanyID = LT.CompanyID
And RT.CategoryID...
June 9, 2008 at 2:54 pm
Well, I'm glad one of us helped. 🙂
June 9, 2008 at 2:21 pm
"Order BY Node" looks like it would work on your data.
June 9, 2008 at 1:10 pm
If the compressed stream returned is really binary data (and it usually is) then it should be stored as VarBinary(..) or Binary(..).
June 9, 2008 at 12:38 pm
Heh.
Yes, GSquared, we expect that the free work donated by the unpaid experts at this site reflect a higher standard than that. :rolleyes:
June 9, 2008 at 12:17 pm
Do you want to list their Names, or do want the listings (scripts) of all of the Triggers?
June 9, 2008 at 12:05 pm
Well I would do it like this on SQL Server:
insert
into t
select TOP (100000) Row_number() Over (order by c1.id, c1.name, c2.id, c2.name)
From master..syscolumns c1
...
June 9, 2008 at 12:03 pm
yes it is.
Perhaps is you give us some more information we can help you. See this link: http://www.sqlservercentral.com/articles/Best+Practices/61537/
June 9, 2008 at 11:52 am
Mahesh Bote (6/9/2008)
[font="Verdana"]fyi...Mahesh[/font]
Are these free e-books, copyright-compliant? I cannot find any statements to that effect on that site.
June 9, 2008 at 11:34 am
Viewing 15 posts - 6,691 through 6,705 (of 7,636 total)