Viewing 8 posts - 1 through 8 (of 8 total)
for bit datatype, any value which in non-zero is converted to bit 1.
try this you will get better understading,
declare @bit bit
set @bit = -0
select @bit
declare @bit bit
set @bit =...
January 28, 2010 at 10:15 pm
tried on sqlserver 2000,2005, 2008.. result obtained from query in (1,1)..
Can anyone explain regarding output... 0 ,1...???
January 28, 2010 at 10:07 pm
If you just want to transform rows into column to show in Cross-Tab report, there is an alternate way.
Use Cross-Tab report to achieve this.
January 27, 2010 at 4:21 am
hey...
First create SQL login... then grant permission to that record... use below query.
GRANT SELECT ON (YOUR table Name ) TO (YOUR sql login name).
it allow only reading of...
January 25, 2010 at 6:23 am
Use below query ..
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = (Your column name..)
Hope this will help you..
January 25, 2010 at 6:12 am
Yes i am Using SSMS....
Thanks for you support.
November 12, 2009 at 6:51 am
While running query in above link i got following error.
As i do not have administrator permission, can i still import data to excel sheet.
Msg 15281, Level 16, State 1, Line...
November 10, 2009 at 6:15 am
Viewing 8 posts - 1 through 8 (of 8 total)