Viewing 15 posts - 16 through 30 (of 443 total)
Nice script. Very useful information.
Thanks.
July 8, 2010 at 12:39 am
Why to go hard way?
No need to Add column ColRowNo and update it.
I would go like this;
---------------------------------------------------------------------
-- Create Table and Insert data
---------------------------------------------------------------------
Create Table TestTable (RowID Int Identity(1, 1), Col1 int,...
July 7, 2010 at 11:32 pm
If there is no info in default trace, than there is hardly any way to get the required info.
Apply DDL trigger for future.
July 7, 2010 at 6:35 am
regarding RDLC reports?
You can discuss RDLC reports with .NET developer around you.
July 1, 2010 at 5:08 am
In case of RDLC reports, you get the dataset on the frontend and then bind it with the report. You can check the dataset before binding it with report and...
July 1, 2010 at 3:56 am
ntext, text, image, or xmlcolumns cannot be used in an ORDER BY clause.
And cHelp is a text column.
OOps... didn't saw the page 2.
July 1, 2010 at 3:34 am
Select (select datepart(yy,getdate()) for XML Path(''))
+ '' +
(select datepart(mm,getdate()) for XML Path('') )
+ '' +
(Select datepart(dd,getdate()) for XML Path(''))
There might be another way as well...
July 1, 2010 at 3:18 am
Are you running report from front end?
July 1, 2010 at 3:07 am
Declare @vsql varchar(max)
Declare @vCols varchar(max)
Create Table vTable1 (id int, StudentID int, Dept varchar(10),BookID int)
Create Table vTable2 (id int, StudentID int, Dept varchar(10),BookID int)
Insert into vTable1
...
July 1, 2010 at 1:02 am
No problem...:-)
June 30, 2010 at 10:30 pm
And Click on 'ADD Topic' button on the top to add a new thread.
June 30, 2010 at 6:33 am
WS,
then you should go for dynamic sql;
here is an example
Declare @vsql varchar(max)
Declare @vCols varchar(max)
Create Table vTable1 (id int, StudentID int, Dept varchar(10),BookID int)
Create Table vTable2 (id int, StudentID...
June 30, 2010 at 6:32 am
1. You should have started a new thread.
2. Please come up with the DDL statements and Insert statements of the sample data.
3. I hope this will help you;
Declare @vTable1 Table...
June 30, 2010 at 5:39 am
Good question..
And its because the datatype of the variables ( @lenStringArray and @lenDelimiter) is INT.
June 30, 2010 at 12:33 am
Viewing 15 posts - 16 through 30 (of 443 total)