Viewing 15 posts - 241 through 255 (of 684 total)
As far as I'm aware the only way to achieve this is to drop and re-create the table. If the table has data then you'll need to create the...
March 31, 2008 at 2:44 am
I'm not entirely certain on what you're asking for here but I'll give it a go.
1. To find the [PO]# in the LogMessage column you could use the charindex...
March 31, 2008 at 2:04 am
Check the sort order/collation for your restored database and check it for your master database. It's possible you've installed SQL Server 2005 with a different collation to what you...
March 31, 2008 at 1:49 am
EXEC msdb.dbo.sp_send_dbmail @profile_name = 'MyProfile'
, @recipients = 'me@mydomain.com'
, @subject = 'subject text'
, @body = 'subject body'
, @query = 'select * from master.dbo.sysdatabases'
, @attach_query_result_as_file = 1
, @execute_query_database = 'master'
BTW, this is...
March 31, 2008 at 1:33 am
Is this stored procedure accessing the master or the msdb databases?
It seems strange that restoring the master and msdb database on sql 2000 fixed your problem, and it would suggest...
March 31, 2008 at 1:27 am
KATHLEEN Y ZHANG (3/28/2008)
If I would use merge replication, how tricky it is to set up and maintain and how robust it is?...
March 28, 2008 at 1:15 pm
KATHLEEN Y ZHANG (3/28/2008)
March 28, 2008 at 10:03 am
No problem. Glad I could help.
March 28, 2008 at 9:33 am
Mike Menser (3/28/2008)
Well I mean I knew that much, but I thought maybe there was a way to just...
March 28, 2008 at 9:00 am
Ian,
The first error I think is related to the create table statement you have at the top. There's a missing closing bracket there.
The substring error relates to the substring...
March 28, 2008 at 8:55 am
Mike Menser (3/28/2008)
There were no issues, and the upgrade went extremely smooth (Kinda scary).
Sounds like it didn't really go as smoothly as you'd thought:cool:
If the server version is showing...
March 28, 2008 at 7:17 am
Looks like you have a problem at your mail server - or you have some kind of anti-virus or spam killer installed somewhere.
Check this article to make sure you have...
March 28, 2008 at 7:09 am
Hi Ian. I get it now.
So each company has 3 agencies, 3 buses and 3 trads. And the first agency is paired up with the first bus and...
March 28, 2008 at 6:30 am
ian_dunlop2000 (3/28/2008)
The code works great - 99% complete
Apologies as fairly new to SQL - how do I create a new table with...
March 28, 2008 at 6:03 am
Viewing 15 posts - 241 through 255 (of 684 total)