Viewing 15 posts - 1,501 through 1,515 (of 2,647 total)
carmellabanker (3/6/2012)
If you want to keep a Desktop Alert visible so that you can take more time to read it, rest the pointer on the alert...
March 6, 2012 at 9:51 am
March 6, 2012 at 9:50 am
Sean Lange (3/6/2012)
There are over 30 subselects and somewhere around 5-6 scalar functions. Even if you got that to work you might as well go out for lunch while it...
March 6, 2012 at 9:42 am
that's a bit much for me to take on. It is really "dirty" and complex. The error means that something in the view is returning more than one...
March 6, 2012 at 9:02 am
ard5karthick (3/6/2012)
It will First Fetch The Rows Having ItemID = 1;
On This Result It will search for Rows Having ItemID = 3
So The...
March 6, 2012 at 8:52 am
Try this:
--ComputeSizeDescription
CREATE FUNCTION dbo.ComputeSizeDescription
(
@itemForm INT,
@width FLOAT,
@len FLOAT
) RETURNS VARCHAR(128)
WITH EXECUTE AS CALLER
AS
BEGIN
DECLARE @descr varchar(128)
SELECT @descr = CASE @itemForm
-- @Width Only Items
WHEN 2 THEN CAST(@Width AS VARCHAR(128)) + '"'
WHEN 3 THEN...
March 6, 2012 at 8:46 am
It is the RETURN. You are returning a VARCHAR when the value is a FLOAT.
March 6, 2012 at 8:41 am
siva 20997 (3/6/2012)
but there are a few reasons
1) I come from a windows programming background and making the execution plan...
March 6, 2012 at 8:27 am
DBA Rafi (3/6/2012)
I have two tables in my OLTP.
Table1 with C1, C2 columns. and
Table2 with D1, D2 columns.
Mostly, when i SELECT Table2, I will join with Table1...
March 6, 2012 at 8:10 am
Jeff Moden (3/6/2012)
SQLKnowItAll (3/5/2012)
March 6, 2012 at 7:50 am
MR@SD (3/5/2012)
March 5, 2012 at 10:15 pm
siva 20997 (3/5/2012)
can someone tell me how to insert code in scrollable windowDont tell me RTFM
Well, being that by typing in the text here it will automatically change the display,...
March 5, 2012 at 5:19 pm
shannonjk (3/5/2012)
So there has to be a file somewhere that stores your SSMS options. Like when you copy/paste to include headers, font colors/types etc. Does anyone know where this...
March 5, 2012 at 3:20 pm
I like to describe my descriptions 🙂 (Sorry, I couldn't figure out a better way.) So, in a Product table I may use a column name of prodDesc, product_description,...
March 5, 2012 at 3:15 pm
guerillaunit (3/5/2012)
I'd like to divide the statement into separate subscripts because the subscripts need to be processed in sequence. I was opening to use the GO command so...
March 5, 2012 at 3:06 pm
Viewing 15 posts - 1,501 through 1,515 (of 2,647 total)