Viewing 15 posts - 16 through 30 (of 47 total)
Thanks vladan it worked !! Now it gives me resultset of
EXEC sp_dropextendedproperty @name = 'MS_Description' ,@level0type = 'schema' ,@level0name = dbo ,@level1type...
October 3, 2008 at 9:59 am
Jeff that was setup during design time which I'm not sure of it now I need scramble that column as binary instead of text ? Do...
May 27, 2008 at 9:20 pm
Is possible to do ntext to binary are or not?
May 27, 2008 at 7:22 pm
I want to use cursor to do this way
OPEN c_table
FETCH NEXT FROM c_table INTO @table_counter
WHILE @@fetch_status = 0
BEGIN
UPDATE student
set class_id = "1234" so...
May 23, 2008 at 8:38 am
Thanks a lot it worked like a charm by the way what is nsd means in the code
May 20, 2008 at 7:39 pm
it is giving me
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near ';'.
at ;with location
May 20, 2008 at 6:28 pm
sorry that is typo is the script starts with semi-colon
;with like that
May 20, 2008 at 6:22 pm
Thanks once again is the statment like this
:WITH
cteNewStartDate AS
(--==== Get the available Scholar_ID's and create a new "start date" for each
SELECT Scholar_ID,
...
May 20, 2008 at 6:09 pm
Hi Jeff,
Thanks for you reply but update statement is not work is syntax correct or not
May 20, 2008 at 4:16 pm
Hi RBarry ! Thanks for your quick response I'm not clear on your response I'm trying to replicate field for test data
May 19, 2008 at 9:32 pm
Jeff thanks a lot again for your help here is create table
CREATE TABLE [dbo].[scholar] (
[scholar_id] [int] NOT NULL ,
[scholar_num] [nvarchar] (20)
[scholar_cur_stat] [tinyint] NOT NULL ,
[scholar_location] [tinyint] NULL...
May 16, 2008 at 7:13 pm
jeff thanks alot how to use this one in striaght update
SELECT SomeDate AS StartDate,
SomeDate+1 AS EndDate
FROM (
...
May 16, 2008 at 5:28 pm
Thanks Todd for your reply I will try it and let know how it goes
May 13, 2008 at 10:12 pm
Viewing 15 posts - 16 through 30 (of 47 total)