Viewing 15 posts - 211 through 225 (of 286 total)
Ohhh my bad, second time, i dint think abt the primary key set on it!!!
However I could not see any difference between the foreign key and without foreign keys...
May 2, 2011 at 4:16 am
Just a later thought, how your manager would have thought of the same....you may explain to us about the context too....
I was just thinking something a tree structure...
1
1 10
1...
May 2, 2011 at 3:51 am
Is your table related with heirarchy mode of operations???
May 2, 2011 at 3:39 am
I do not aware of something at database level.
Also you can post the same in SQL server 2000 forum for a quick response as the question is on SQL server...
April 27, 2011 at 11:41 pm
Is it something you are looking for?
Declare @int decimal
Set @int = 123345.524
Select ROUND(@int,0)
April 27, 2011 at 11:39 pm
little crazy....
try with this...changed as dynamic...for the number considering the word SUM
declare @Find1 varchar(20)
declare @Find2 varchar(20)
declare @search varchar(50)
select @Find1='SUM', @search='nhtinhfsgjesrtyrtywqeqweqwalgjdmexSUM=192340SUMdsfsdfsdfsdsdsdf'
select @Find2='SUM='
Select SUBSTRING(@Search,
case charindex(reverse(@Find2),reverse(@search)) when 0 then 0 else len(@search) -...
April 26, 2011 at 4:52 am
Is this something you are looking for?
declare @Find1 varchar(20)
declare @Find2 varchar(20)
declare @search varchar(50)
select @Find1='SUM', @search='nSUM=123123190SUMdsfsdfsdfsdsdsdf'
select @Find2='SUM='
Select SUBSTRING(@Search,
case charindex(reverse(@Find2),reverse(@search)) when 0 then 0 else len(@search) - (...
April 26, 2011 at 4:47 am
I found adding an integer is getting changed. Is there any conversion to an int and make it unique?
April 21, 2011 at 6:12 am
Refer the below link:
http://sqlzealot.blogspot.com/2010/12/cxpacket-parallellism.html
April 18, 2011 at 3:44 am
Use DDL Trigger instead...
April 14, 2011 at 1:08 am
Please refer the following link:
http://sqlzealot.blogspot.com/search/label/System%20Functions
April 12, 2011 at 2:19 am
Server->Security->Server Roles->Sysadmin and look at the account name...
April 11, 2011 at 4:34 am
few more things, If you do not wanna complicate things,
make use of either of things:
1. Trigger on the tables
2. Use OUTPUT clause on transactions to push the table name to...
April 6, 2011 at 11:30 pm
if both are in same server just use complete path. if those are in two different server, create a linked server and use the join.
April 6, 2011 at 11:25 pm
Shaiju, it was a good article. However I did not get an answer. My specific question is "Can I be changed Optimize adhoc for workload" setting to true for an...
April 1, 2011 at 2:13 am
Viewing 15 posts - 211 through 225 (of 286 total)