Viewing 15 posts - 2,236 through 2,250 (of 2,894 total)
I don't want to appear to be rude, but with 2,087 visits on this forum you definitely aware of how to post questions here. If not, link in my signature...
August 17, 2011 at 6:05 am
Happy to help, but I wonder what scotsman has to do with RosAviaKosmos ? 😀
August 17, 2011 at 6:00 am
Please next time, test your code before posting so its runs without error!
Also, you've created another thread for the same question!
You have very strange requirements, but I leave it with...
August 17, 2011 at 5:17 am
If I'm right you want to search for something and replace it in every column in every user table.
Ok, if you really determined, that is for you:-D:
DECLARE @sql NVARCHAR(4000)
DECLARE cupd...
August 17, 2011 at 5:04 am
checkai (8/8/2011)
August 17, 2011 at 4:45 am
SQLSandwiches (8/17/2011)
As for commented code, do you guys enforce it in your workplace? I was able to use policy management for object naming but didn't find a way to enforce...
August 17, 2011 at 4:32 am
Could you please clarify what you want top be displayed as: a.id a.name b.num
There are no such columns in your sample table setup.
But as general answer: most likely you...
August 17, 2011 at 4:25 am
Try to remove everything from the noise file you changed, will you see any effect for other words?
August 17, 2011 at 2:41 am
SELECT Col1 AS Column1
,Col2 AS Column2
.....
INTO #t
You can see...
August 16, 2011 at 8:35 am
Where?
In Sql Server - Yes, you can. I'm sure you have a high chance that T-SQL will work there 😀
But I'm not sure about Informix... You can try and...
August 16, 2011 at 8:18 am
bwoulfe (8/16/2011)
...It's setup with temp table right now and the performance is just ok. I may just need to stick with a temp table but rewrite it...
Using temp tables...
August 16, 2011 at 8:05 am
How you want your count to be returned then?
Returning the count in the column would be the best option, client app can read this value from first row and then...
August 16, 2011 at 7:34 am
Vlad-207446 (8/15/2011)
"31/12/2004" is not a valid date in SQL server unless the server default is set to a...
August 16, 2011 at 7:20 am
Cadavre (8/16/2011)
DECLARE @RowStart INT
DECLARE @RowEnd INT
SET @RowStart = 1
SET @RowEnd = 100
;WITH CTE AS
(
SELECT *, ROW_NUMBER() OVER(ORDER BY (SELECT...
August 16, 2011 at 6:49 am
kbsk333000 (6/23/2011)
Hi,1. There is a plan to write a trigger on a table in Server1 which inserts records on a table in linked server Server2.
...
I wonder what would cause you...
August 16, 2011 at 6:28 am
Viewing 15 posts - 2,236 through 2,250 (of 2,894 total)