Viewing 15 posts - 46 through 60 (of 84 total)
Looks like this is route we will take. We will upgrade all the instances and not have a mix of 2000 and 2005 as these are clustered instances. Applications that...
June 11, 2007 at 6:51 am
sp_sendmail is disabled by default.
Also I am not worried about the DTS packages / maintenance plans.
I am a little confused on the MSDB messages I got on the upgrade advisor.
I...
June 6, 2007 at 2:43 pm
I am planning the same: backup old and restore to sql server 2005. My 2000 dbs have nothing fancy:
1. Regular maintenance plans: backup/Optimize/check integrity ...
2. Some instances have simple DTS...
June 6, 2007 at 1:07 pm
I re-restored the db and it came up right away.
March 7, 2007 at 10:37 am
That works, thanks,
I am surprised that an alias was gone. Not sure how this got deleted.
March 2, 2007 at 12:08 pm
thanks Lowell, I figured this out.
Coming back, the KB is confusing. It says use getUTFdate() in TSQL stmts instead go getDate() for dateDiff/dateAdd functions. But does not say the same while setting...
February 22, 2007 at 3:29 pm
found it!. The apps had locked some tables and so the error!.
thanks
February 16, 2007 at 12:59 pm
The SP will get fname+lname = user from a 3rd table...
December 11, 2006 at 7:50 am
got it! while creating sample data. There is no way that I can relate table1.field2 and table2.field4.
group1 fname lname
group1 fname2 lname2
group1 fname3 lname3
group1 fname4 lname4
group1 fname5 lname5
table2
field3 field4
group1 user1
group1 user2
group1 ...
December 8, 2006 at 9:47 am
In this case:
table1: - field1, field2
table2: - field3, field4
field1=field2
so distinct/group by of all the output:
field1, field2, field3, field4 is distinct as field2 and field4 have different values. ???
December 8, 2006 at 9:20 am
I get the same results:
with distinct or with group by or none of the 2: straight joins as I had in the begning.
December 8, 2006 at 9:17 am
Does not care with with either DISTINCT or Group by ??
Did not think this will be so complicated
December 8, 2006 at 9:10 am
select t1.*, t2.*
from table1 t1
inner join table2 on t2.field3 = t1.field1
where t1.field1 = 'char 200'
I want field1, field3, field4 --?
December 8, 2006 at 8:57 am
When I use integrated security=SSPI, there is no need for uid/pwd. does this read my credentials ?
The following works in SQL QA:
select
field1, field2.....
from OPENDATASOURCE(
'SQLOLEDB',
'Data Source=SERVER IP,PORT;Integrated Security=SSPI;'
 
November 21, 2006 at 9:03 am
I was in a similar sitituation. I first updated the column to a space and than alterted the table to not allow nulls.
Depending upon number of records and data type,...
November 10, 2006 at 11:11 am
Viewing 15 posts - 46 through 60 (of 84 total)