Viewing 15 posts - 586 through 600 (of 761 total)
This is a workaround to your requirement:
declare @a varchar(10), @b varchar(10), @c varchar(10), @d varchar(10) = '00'
set @a='1'
set @b='2'
Set @c=+@a+@d+@b
Select @c
set @a=112
set @b=2
Set @c=+@a+@d+@b
Select @c
Hope this helps.
April 27, 2012 at 12:29 am
Try running the below mentioned query as a single query:
select s.Itemid from #sequence s join #item i on s.Itemid=i.Itemid
I think this must be returning more than one "Itemid". If that...
April 27, 2012 at 12:10 am
There are a lot of people who can help you here. For that please post DDL, sample data and an example result set of what you are expecting so that...
April 26, 2012 at 11:21 pm
Yes you can do that...if the SP does what you are asking it to do
April 26, 2012 at 11:15 pm
Lynn Pettis (4/26/2012)
dwain.c (4/26/2012)
I was looking at a stock table with the columns Part Number and Part Description. I just found out that we have over 95 tables that contain...
April 26, 2012 at 11:11 pm
hmm...yes...could be...that's very logical Jared.
A very good shot in the dark. 🙂
April 26, 2012 at 10:54 pm
sqlfriends (4/26/2012)
I did a comparison that generats delta schema script.
I see there are some statements like :
EXEC sp_refreshview [Tests].[BusinessReport]
My question is when to...
April 26, 2012 at 10:51 pm
Jeff Moden (4/26/2012)
vinu512 (4/25/2012)
I just want the names to be stored in 5 temp variables so that I can use them further.
Can that be...
April 26, 2012 at 10:34 pm
jmiceli (4/26/2012)
We have this same structure except that the 2005 named instance...
April 26, 2012 at 10:18 pm
brally123 (4/26/2012)
@vinu512Thanks for the answer, but I already followed Cadavre's method.
Again, thanks for helping! 🙂
Regarding the points i mentioned, it's the points[score] under your name. :;-)
No problem.
ALways happy to help...
April 26, 2012 at 10:13 pm
What method did you use to import the Data??..."DTS Wizard" or you did it by creating a Job through "BID Studio"?
April 26, 2012 at 10:08 pm
Larry Page(Ehsan.Akbar) (4/26/2012)
what about update?
You need performance...right??
The best performance you can get is by getting all the data on 1 server and then perform whatever actions you want to perform...
April 26, 2012 at 10:06 pm
Larry Page(Ehsan.Akbar) (4/26/2012)
so actually i have 20000 records in my table ,so every second i have to execute a search query ,and this query returns 4 result each second ,
Its...
April 26, 2012 at 7:01 am
Viewing 15 posts - 586 through 600 (of 761 total)