Viewing 15 posts - 1,276 through 1,290 (of 1,539 total)
brainy (1/21/2009)
FROM dbo.OPFORTE RIGHT JOIN (dbo.NAVMC RIGHT JOIN tblUnit_Ref ON dbo.NAVMC.UIC = tblUnit_Ref.UIC) ON dbo.OPFORTE.MEFUIC...
January 21, 2009 at 12:20 am
yisaaacs (1/21/2009)
how do i schedule a job to run for the previous day?
i have SQL extracting daily statistics and every morning at 9am i need to run a job...
January 21, 2009 at 12:10 am
I think i'm not clear on your exact requirement. What i understand is you need to populate this table (and may be others) at regular intervals for testing purpose. ...
January 21, 2009 at 12:01 am
kuldip.bhatt (1/20/2009)
so if Primary key then there no solution for the DBCC COmmand
I dont think i understood what you mean here...
i can't use Order by in Sub Query.
is...
January 20, 2009 at 11:51 pm
Pls post your replies to http://www.sqlservercentral.com/Forums/Topic640431-338-1.aspx?Update=1
January 20, 2009 at 11:33 pm
betsy.powlen (1/20/2009)
I can get this to run no problem, but it always says "0 records updated". I'm pretty sure it has something to do with where its looking for...
January 20, 2009 at 11:31 pm
kuldip.bhatt (1/20/2009)
Suppose there is one table and it has one primary key it's type is Integer.
currrenlty this table has 20 rows but it's last indentity value...
January 20, 2009 at 11:27 pm
Lynn Pettis (1/20/2009)
Saves...
January 20, 2009 at 11:13 pm
If this takes up lot of time and you need to delete appx 70% of your records, i might do it the other way.
change recovery model from FULL to Bulk...
January 20, 2009 at 10:48 pm
kuldip.bhatt (1/20/2009)
what is the use of the set indentity ?
if we set it to max no value in the table.
so there no change in the table...
January 20, 2009 at 10:36 pm
:w00t: Is there a rationale behind this weird behaviour?
January 20, 2009 at 10:14 pm
Thanks for clarification Christopher :). I also searched few posts here on AD and groups and found this to be quite informative.
http://www.sqlservercentral.com/Forums/Topic498389-146-1.aspx
January 20, 2009 at 9:31 pm
declare @str1 varchar(10)
set @str1='1234,578'
select right(@str1,len(@str1)-charindex(',',@str1))
output
----------
578
(1 row(s) affected)
January 20, 2009 at 11:12 am
Use default value in the money column.
create table #t1
(
col1 int,
col2 money default 0.00
)
--drop table #t1
insert into #t1 (col1)
select 1
union all
select 2
union all
select 3
select * from #t1
Output
=====
col1 ...
January 20, 2009 at 11:05 am
Viewing 15 posts - 1,276 through 1,290 (of 1,539 total)