Viewing 15 posts - 121 through 135 (of 139 total)
Check the link below. Hope it helps.
http://technet.microsoft.com/en-us/library/dd578580(SQL.100).aspx
Regards,
Shaiju CK
March 31, 2011 at 9:51 am
Hi Wayne,
I have learned something new today. Thank you very much 🙂
Regards,
Shaiju CK
October 2, 2010 at 5:14 am
Dear Luke,
Thank you for your comment. When I saw makham01’s question, the only thing came into my mind is “COALESCE”. So I tried to get the result over it. If...
October 2, 2010 at 1:37 am
Hi Ravichandra,
Please find below some links related to this.
http://support.microsoft.com/kb/935573
http://weblogs.sqlteam.com/mladenp/archive/2007/02/15/60101.aspx
http://www.eggheadcafe.com/software/aspnet/31942052/downgrading-2008-to-2000.aspx
Regards,
Shaiju CK
October 1, 2010 at 6:35 am
--// Please try the below script
------------------------------------------------------------------------------------------------
CREATE TABLE tYourTableName
(
Position CHAR(1),
Name VARCHAR(30)
)
INSERT INTO tYourTableName VALUES('A','John')
INSERT INTO tYourTableName VALUES('A','adam')
INSERT INTO tYourTableName VALUES('A','eddie')
INSERT INTO tYourTableName VALUES('B','scott')
INSERT INTO tYourTableName VALUES('B','james')
DECLARE @tPosition AS TABLE
(
Id TINYINT IDENTITY(1,...
October 1, 2010 at 6:15 am
Hi,
Try this...
--------------------------------------------------------
DECLARE @lValueStr VARCHAR(MAX)
SET @lValueStr = NULL
SELECT @lValueStr = COALESCE(@lValueStr + ', ', '')
+ name + '(' + CAST(Counts AS...
April 22, 2010 at 1:04 am
Hi,
Try the below script. But changing datatype is the best option what Stefan and Paul White’s suggested. Otherwise you need to do lot of date conversions to get the result.
SELECT...
April 19, 2010 at 12:25 am
Hi,
Let me clear 2 things.
1) Is there any data in this table?
2) EmployeeName data type is bigint or any character data type?
Shaiju C.K.
April 9, 2010 at 5:14 am
Hi Maqsood,
Can you recreate the table at the time of dropping or creating a new field? Before that you have to move/copy the existing data to a temporary table and...
June 20, 2009 at 6:39 am
Hi Jacob,
I tried the same code.
CREATE TYPE ItemInfo AS TABLE
(
ItemNumber VARCHAR(50),
Qty INT)
and I got the following error:
Msg 156, Level 15, State 1, Line 1
Incorrect...
February 13, 2009 at 7:32 am
Please find one of the sp script below.
ALTER PROCEDURE [dbo].[pLoadDoctors] ...
January 19, 2009 at 3:46 am
Hi Abhijit,
EXECUTE permission is already there. When I DENY VIEW DEFINITION permission it is giving the above error, otherwise not.
Hi Gail,
Those sps are not accessing any system tables.
Thanks,
Shaiju C.K.
January 19, 2009 at 3:38 am
Thanks Girish,
I meant print a message or show an error to the creator of that object. Anyway, You directed me to the exact link. This is what I want. I...
November 25, 2008 at 2:27 am
Hi Andras,
Thanks man !!!
September 14, 2007 at 8:17 am
Viewing 15 posts - 121 through 135 (of 139 total)