Viewing 15 posts - 4,951 through 4,965 (of 15,381 total)
jdasilva (5/9/2014)
J Livingston SQL (5/9/2014)
is/can your form be based on a single table/sql query?
Yes, and it currently is, but that query refines data based on a an office code selected...
May 9, 2014 at 8:32 am
I have a feeling the reason is because of performance? Have you tried changing your UNION to UNION ALL? It seems that since you have a date in there you...
May 9, 2014 at 8:14 am
Despite the fact that you are working with Oracle I would highly recommend you read up on normalization. The structures you presented need some serious help with normalization. You have...
May 9, 2014 at 7:42 am
scotsditch (5/8/2014)
I want to create a computed Column in a SQL Server...
May 9, 2014 at 7:36 am
Budd (5/6/2014)
I could create a union view to display the current values from tableA and all...
May 9, 2014 at 7:34 am
RHut 21288 (5/9/2014)
I believe this is what you need - dynamic SQL syntax is tricky. Each line needs a statement of
No you don't...
May 9, 2014 at 7:29 am
hoseam (5/9/2014)
Before I used to pass parameters
declare @Fund_Id varchar(50),
@Product_Id varchar(50),
@NewFund_Id varchar(50),
@NewProduct_Id varchar(50),
...
May 9, 2014 at 7:19 am
ramana3327 (5/8/2014)
Yes. They are executing different Stored Procedures
Well unfortunately my crystal ball is still out for repair. As a result I can't your screen, I have no idea what you...
May 8, 2014 at 1:23 pm
Luis Cazares (5/8/2014)
jcrawf02 (5/8/2014)
WayneS (5/8/2014)
Ed Wagner (5/8/2014)
May 8, 2014 at 10:40 am
danielfountain (5/8/2014)
I am using a cursor (i know - but this is actually something that is a procedural loop).
So effectively i have a table of names of stored procedures....
May 8, 2014 at 7:46 am
Megha P (5/8/2014)
WHERE (@p_flag = 1 AND moveFlag = 26)
OR (@p_flag <> 1 --if this is a bit I would use = 0...
May 8, 2014 at 7:31 am
Good question about a topic I knew nothing about. Thanks Tom.
May 8, 2014 at 7:29 am
ramana3327 (5/7/2014)
I need to do some analysis.
We have a database that track how much time it take to execute wcf service call or from UI controll call. I identified 1-2...
May 7, 2014 at 3:45 pm
There is no execution plan attached. It would also be helpful if you could include table and index definitions.
Why are you using NOLOCK? Is missing and/or duplicate data acceptable? This...
May 7, 2014 at 3:43 pm
Eirikur Eiriksson (5/7/2014)
Sean Lange (5/7/2014)
I never use either of them and they tend to cause lots of issues for people who don't fully understand what they do.
NOLOCK turns the database...
May 7, 2014 at 2:28 pm
Viewing 15 posts - 4,951 through 4,965 (of 15,381 total)