Viewing 15 posts - 181 through 195 (of 283 total)
Thanks for your quick replay.
uniqueidentifier column(with primary key (now)) has been used in table joining in current design.
so if i remove the current primary key on uniqueidentifier, will the...
March 4, 2014 at 7:49 am
Supported means that Microsoft "supports" that configuration. I have installed SQL Server on non-supported platforms and been able to use it plenty of times.
But seriously, why install SQL Server...
February 27, 2014 at 11:23 pm
SQLRNNR (2/27/2014)
Even though it is not supported, you might be able to successfully install it.
I run developer edition of SQL...
February 27, 2014 at 11:10 pm
Checked Hardware and Software Requirements for Installing SQL Server 2012 could not find Windows XP.
http://msdn.microsoft.com/en-us/library/ms143506.aspx
Have any one tried it?
February 27, 2014 at 11:02 pm
Even for 32 bit?
OS : Windows XP with SP3
February 27, 2014 at 10:03 pm
Can we install sql server 2012 (32 bit) on Win XP
February 27, 2014 at 10:07 am
Thanks for the Link but it does not give the solution rather it is trying to address the problem but not fully.
February 21, 2014 at 4:44 am
Pasting couple of rows is not a problem but what is the logic...?
December 26, 2013 at 4:31 am
I/P
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Divide by 3;
i need it as
O/P
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ' -1
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ' -2
String len =71(27+54);
I know one string len can not exceed 27
say the string is now 27*4 =108
I/P
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Divide by 2;
O/P
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ' -2
'0ABCDEFGHIJKLMNOPQRSTUVWXYZ0ABCDEFGHIJKLMNOPQRSTUVWXYZ'...
December 23, 2013 at 5:13 am
David Burrows (12/19/2013)
DECLARE @test varchar(max)
SET @test = CHAR(1)+CHAR(87)+CHAR(179)
SELECT CAST(CAST(SUBSTRING(@test,1,3) as varbinary(3)) as int)
how do u made CHAR(1)+CHAR(87)+CHAR(179) on which factor u decide if it is a dynamic...
December 23, 2013 at 1:54 am
Similiar thing for flaot values can we get..!
for decimal values is it is possible...
Select utl_raw.cast_to_varchar2(utl_raw.CAST_FROM_BINARY_FLOAT(.2635)) from dual;
>†éy
December 23, 2013 at 1:45 am
LutzM (12/15/2013)
Assuming the...
December 18, 2013 at 12:13 am
page will be having 1000 records (between 1 and 1000 ) in first go.. for each and every scroll there be another 1000 rows (between 1001 and 2000 )and so...
December 17, 2013 at 11:55 pm
Ok... so where is that information stored and is it stored for every row so you can do variable length columns?
The information will be stored in a BLOB table as...
December 17, 2013 at 9:29 pm
Viewing 15 posts - 181 through 195 (of 283 total)