Showing posts with label Sql Server. Show all posts
Showing posts with label Sql Server. Show all posts
0 comments Friday, January 26, 2007

Hi

Today at Arab Teem someone ask question about the null and the Space-Key which is not null of course. See this example to know more what I'm talking about.

Have fun.

Bye

Create Table xT

(

FName VarChar ( 30 ) Not Null

)

Go

Insert into xT ( FName ) Values ( Null )

Go

Insert into xT ( FName ) Values ( '' )

Go

Insert into xT ( FName ) Values ( 'Ahamd' )

Go

Alter Table xT With NoCheck

Add Constraint CH_xT_FName Check ( Len ( FName ) > 0 )

Go

Insert into xT ( FName ) Values ( Null )

Go

Insert into xT ( FName ) Values ( '' )

Go

Insert into xT ( FName ) Values ( 'Desigen' )

Go

Select * From xT

Go

0 comments Tuesday, January 9, 2007

Hi,

How are you?

It has been a while. I have a lot of homework and next week I have exams.

Today I found this interesting thing about creating a PDF from Sql Server without using any external tool

Have fun

0 comments Tuesday, December 5, 2006

Hi

Today I tried to login to Sql Server 2005 using Windows Authentication Method and I couldn't do it but a little Google and you will get a lot of posts about this issue. You can go throw this article to solve this problem. I think Sql Server doesn't enable his service in Windows XP SP2 Firewall.

Have fun
Bye