Viewing 15 posts - 8,701 through 8,715 (of 13,460 total)
seems like your column EEO1Classification is actually a varchar even though it might contain what seems to be just integers....so you'll have to explicitly convert it to do the sum...
September 22, 2010 at 10:22 pm
what would happen if your procedure received NULL for either of the two parameters? could it raise an error?
exec [sp_ETL_To_Rpt] @frmdt,@todt
since your trigger says it's also for DELETE, and you...
September 22, 2010 at 10:19 pm
i use getdate() excluseively; like others havre said, it's been in my repitoir for years, and also because of that datatype where a timestamp is not really a timestamp, but...
September 22, 2010 at 11:00 am
ok, this example, based on your provided data seems to work for me;
i'm assuming the discount rates are added to the same table...but i hope it is obvious that a...
September 21, 2010 at 7:01 am
interesting wissam;
the excel spreadsheet you receive, does the start and end date apply only to the short term offer? so for one month some rate is slightly cheaper, but the...
September 21, 2010 at 4:23 am
Ratheesh.K.Nair (9/19/2010)
The application wont connect to database...For remote connection you should enable both TCP\IP and NAMED PIPES
i don't think that is true; SQL will simply use only the TCP/IP instead;...
September 20, 2010 at 2:29 am
it's they way a default constraint works...i think you are misunderstanding it.
a default constraint DOES NOT replace nulls with the default value...it puts the default value in if the column...
September 20, 2010 at 2:24 am
is the length of the fields with preceding zeros all the same? for example are the 6 characters? '000008'?
you can change the column to a varchar, and then update...
September 20, 2010 at 2:12 am
not directly, no.
each column has to be referenced in the update statement, but you can use the schema tables to generate the SQL statement for you.
you were a little loose...
September 19, 2010 at 3:08 pm
here's another way to do the same thing: ColdCoffee thank you for the setup!:
DECLARE @PhoneNumbers TABLE
(
ID INT IDENTITY(1,1),
TEL1 BIGINT,
TEL2 BIGINT,
TEL3...
September 19, 2010 at 10:44 am
kumar.sachu08 (9/19/2010)
I hope microsoft will provide, any facility for the same in future.Sometime such cases come for DBA or developer. He don't want to share own database
Sachin
the technology already exists....
September 19, 2010 at 10:37 am
I know the feeling...you put a lot of hard work and time into designing the database objects, and you don't want anyone to look at them because they could infer...
September 19, 2010 at 7:07 am
another way is to connect via the Dedicated Administrative Connection (DAC)
a perfect example would be you removed builtin\administrators and then forgot the sa password...which was the only sysadmin on your...
September 19, 2010 at 6:58 am
I had a similar issue where a specific login i created for testing would show up first when i selected a server...so i'd have to change it over and over...
September 19, 2010 at 5:16 am
Viewing 15 posts - 8,701 through 8,715 (of 13,460 total)