Viewing 15 posts - 16 through 30 (of 42 total)
Here is the create table query for all of them.
CREATE TABLE [dbo].[IPv6_Daily_Reporting](
[DAY] [datetime] NULL,
[NODE_ID] [varchar](50) NULL,
[ADDRESS_CLASS] [varchar](50) NULL,
[ACCESS_POINT_NAME] [varchar](140) NULL,
[FULL_HANDSET_NAME] [varchar](150) NULL,
[TAC_LIST] [varchar](20) NULL,
[UNIQUE_MSISDN] [numeric](18, 0) NULL,
[UNIQUE_PDP_ADDRESSES] [numeric](18, 0) NULL,
[UNIQUE_MSISDN_PDP]...
July 5, 2012 at 6:10 pm
Please find attached indexes information for each table.
Thanks
July 5, 2012 at 5:45 pm
These tables have no indexes.so if i have to create index which column would be the best in each table .
July 5, 2012 at 5:37 pm
my sources are tables(oledb source)
March 25, 2012 at 11:49 pm
I want to convert column_A varchar(20) to column_c Nvarchar(20) and Column_B Nvarchar(16) to column_c nvarchar(20).
is this right?
for source column_A having datatype varchar(20)
cast(ColumnA as Nvarchar(20))
for source column_B having datatype Nvarchar(16)...
March 22, 2012 at 9:17 am
I have one destination column with Nvarchar(20) and i want to load data from two columns and their data types are varchar(20) and nvarchar(16).so that's why i want to...
March 21, 2012 at 4:53 pm
i am using code1 as business key ,name as type 2 and code as type 1 .
March 19, 2012 at 1:27 am
so then can i insert max value of that column instead of default -1 in place of null values.bcz my manager does want null values in foreign key table...
March 17, 2012 at 3:30 pm
Is this possible that i can have in this format 12/31/2099 .if we will do like
ALTER TABLE [dbo].[test] ADD DEFAULT ((convert(int,convert(datetime,'12/31/2099')))) FOR [id]. it will set default 73048...
March 15, 2012 at 3:06 pm
thanks this give me the result .but i donot want by this way .as i want based on workday(where workday='y').bcz i have another columns like workday_international which are all based...
March 8, 2012 at 10:40 am
ya. number of days in week means =monday to friday(working days).and for that in my table column workday has 'Y' or 'N'.where y=monday to friday and 'N' means saturday,...
March 5, 2012 at 2:39 pm
ya..this is my table
CREATE TABLE dt3
(
dates DATETIME,
workday ...
March 5, 2012 at 2:29 pm
i want the result in this way
insert into dt3 values(2012-03-04,'N','4','21','62','251'),
(2012-03-03,'N','4,'21','62','251')
March 5, 2012 at 12:26 pm
Viewing 15 posts - 16 through 30 (of 42 total)