Viewing 15 posts - 16 through 30 (of 58 total)
I can change that to varchar(512) or something, but I was wondering if there is a configuration setting or something in sql server which will not allow that to happen....
October 7, 2009 at 1:25 pm
thanks for the replies Guys,
CREATE TABLE TEST (TEST2 VARCHAR(MAX) NOT NULL);
go
ALTER TABLE [TEST]
with check add constraint [ck_test2]
CHECK (len(ltrim(rtrim(isnull([test2],''))))) > 0 );
go
This is the check constraint am...
October 7, 2009 at 12:53 pm
thanks for the replies,
I did not mean was inserting null,,, but if you see nothing in the column , is it not similar to inserting unknown value. I dont...
October 7, 2009 at 12:31 pm
Thanks for tht information.
Nikhil
March 24, 2009 at 2:08 pm
Thanks a tonn dude,,
for all the help.. it worked....
March 24, 2009 at 9:33 am
Thanks for the reply,
I dont think I can install anything on this server, so that is the reason I used to take manual backups instead. I read stuff which says...
March 19, 2009 at 3:11 pm
Thanks for the reply,
SQLCMD is not installed
March 19, 2009 at 2:34 pm
thank you guys for all the replies.
After a lot of r & d, I thought there was no solution for my problem but to either change the path directly when...
January 27, 2009 at 8:23 am
Thanks a lot for the reply. so there is no way of doing this.... apart from using a script..... I could find registry entries for changing default locations for folders...
January 26, 2009 at 10:30 am
Thanks Gilamonster for the reply,
Yes,
The tables which had few tables created problem for me. Though, after realizing that, I did rebuilding on tables which had more than 100,000 rows, and...
September 30, 2008 at 1:20 pm
Thanks for all the replies...
Gila Monster
I could not answer as I came in a little late today. We are using MSMQ (microsoft message queuing) for batch processing.
P.S Davidb
David...
September 18, 2008 at 1:00 pm
thanks a lot for the reply.
I was wondering if the software you specified was only for UNIX as I am using windows server 2003. Also, do you know any other...
September 17, 2008 at 7:40 am
Viewing 15 posts - 16 through 30 (of 58 total)