Viewing 15 posts - 166 through 180 (of 243 total)
Yes, it is SS2000, though I never can decipher the error messages headers of 'State X, Level Y' apart from the 'Line 3' part.
But I think I fixed the problem,...
October 11, 2007 at 1:59 am
I want to calculate the date associated with 3 day of 3 week of next month. If Sunday is taken as Date First it would be 11/13/2007. This needs to...
October 10, 2007 at 6:44 am
SQL Server is a Relational Database Management System. It has many powerful features that help in administering complex databases. Although we can write many programs in it, it has limitations...
October 10, 2007 at 6:34 am
I ran Saritha's code and my @sql var builds up as:
Update #temp set Oct = case when @col = ''Oct'' then @oct else @sep end
I am puzzled why...
October 10, 2007 at 3:52 am
Many many thanks to each of you for your help. It's been a great help.
October 1, 2007 at 12:49 am
Thanks all for your tips.The VB forum gys recommended formatting in backend and the SQL forum guys say do it in frontend. Isn't it interesting?
September 29, 2007 at 5:25 am
create table CustomerFlags
( CustomerId not null
, CustomerFlag not null
, constraint CustomerFlags_P primary key (CustomerId , CustomerFlag )
)
create table OrderFlags
( OrderId not null
, OrderFlag not null
CustomerId not null
, constraint OrderFlags_P primary...
September 28, 2007 at 7:19 am
Thanks a lot, it really helped. The duplicate post came accidentally when I lost my connection briefly yest. I triedto delete it twice but no dice.
September 25, 2007 at 3:50 am
Thanks, Vladan, for your explanation. And yes, I am talking of the datetime datatype.
I suspected as much. Unlike most of the members here, I am not a SQL Server professional...
September 14, 2007 at 7:02 am
I am not much of a Windows engineer (I can hardly distinguish between Windows domains and workgroups). The server I am referring to is installed on my development PC. My...
September 14, 2007 at 12:53 am
I won't claim to be an expert in SQL Server but the possibile cause that quickly comes to mind is that SQL server resultsets dispalyed in EM will often prompt...
August 22, 2007 at 6:19 am
Works fine for me. Have you double-checked the rest of your syntax?
Also try replacing the variable with a hard value.
August 16, 2007 at 8:09 am
I have 2 issues with the table:
1) it seems to be doing too much
2) it's conceivable that a person could find themselves in this table, even though they're neither a...
August 16, 2007 at 1:24 am
I normally place a GO before any CREATE statements to distinguish the BATCH.
SET @cmd = 'USE ' + @dbname + ';GO;CREATE VIEW...
August 13, 2007 at 3:29 am
Viewing 15 posts - 166 through 180 (of 243 total)