Viewing 15 posts - 10,561 through 10,575 (of 26,489 total)
SSCNewbee (7/23/2012)
Message
Executed as user: AD\MOSS_BI. ...te Package Utility Version 9.00.3042.00 for 64-bit Copyright (C) Microsoft...
July 23, 2012 at 8:59 am
GilaMonster (7/23/2012)
July 23, 2012 at 8:30 am
forsqlserver (7/23/2012)
I have lakh of rows to be deleted in this table it will full my log file...I want to use top in delete statement..
Please read the following article, it...
July 23, 2012 at 8:26 am
Jeff Moden (7/22/2012)
Nagaram (7/22/2012)
Jeff Moden (7/22/2012)
Nagaram (7/22/2012)
Thanks to all ,
There's a question in my mind that's still outstanding about all of this. Do you just want to return a...
July 22, 2012 at 9:24 pm
Or you could do either of the following:
begin try
create index IX_NotNullID on dbo.TestUpd (
TestUpdId,
...
July 22, 2012 at 4:19 pm
Realizing I have an unnecessary join, this would also work:
if exists(select 1
from sys.indexes i
...
July 22, 2012 at 4:07 pm
Then you need to do something like this prior to the CREATE INDEX statement:
if exists(select 1
from sys.tables t inner join...
July 22, 2012 at 4:03 pm
Welsh Corgi (7/22/2012)
You have to first create the Index and then execute with that...
July 22, 2012 at 3:35 pm
From what I can tell reading BOL, this is as designed.
DROP_EXISTING = { ON | OFF }
Specifies that the named, preexisting clustered, or nonclustered is dropped and rebuilt. The...
July 22, 2012 at 1:11 pm
lokeshvij (7/22/2012)
Trigger is not required here. Alter your table to include CHECK Constraint with specified salary options.Check the below links for implementation:
http://msdn.microsoft.com/en-us/library/ms188258%28v=sql.105%29.aspx
http://msdn.microsoft.com/en-us/library/ms179491%28v=sql.105%29.aspx
It is much more helpful if you surround the...
July 22, 2012 at 11:47 am
A little difficult to understand what you are requesting, but if what you want to prevent is that a Salary amount can't be less than 500.00, all you need is...
July 22, 2012 at 10:59 am
Looks to me that you have enough information to answer your own question at this time.
July 20, 2012 at 3:54 pm
NOTE, the 6 seconds I talk about above is not for all the code, just the code returning records with a count of 4 or more in a 24 hour...
July 20, 2012 at 3:53 pm
ranganathanmca (7/20/2012)
thanks for your anwserplease find the table structre
Column
FLOW_LINEUP_ID
FLOW_LINEUP_NAME
FLOW_LINEUP_DESC
METER_ID
FLOW_LINEUP_ACT_CALCNAME_ID
FLOW_LINEUP_ACTUAL_CALCTYPE
SIMTO_TAG_ID
FLOW_LINEUP_SIMTO_CALCNAME_ID
FLOW_LINEUP_PLAN_CALCTYPE
FLOW_LINEUP_FLAG
FLOW_LINEUP_CR_DT
FLOW_LINEUP_MD_DT
FLOW_ID
datatype :
int
varchar
varchar
int
int
char
int
int
char
varchar
datetime
datetime
int
Doesn't tell me a thing. I don't know what the table is nor do I know what or how...
July 20, 2012 at 3:49 pm
ranganathanmca (7/20/2012)
Hi guys,How to identify the last inserted values in "select Query"
Example Query :
select * from iPROMIS_BI_FLOW_LINEUP where FLOW_LINEUP_NAME like '%2CUF%' order by FLOW_LINEUP_NAME asc
Thanks
Ranganathan palanisamy
Not enough information to give...
July 20, 2012 at 3:37 pm
Viewing 15 posts - 10,561 through 10,575 (of 26,489 total)