Viewing 15 posts - 1,081 through 1,095 (of 1,271 total)
First of all, a semi-colon command terminator DOES indeed work in dynamic SQL. I use it all the time. For example:
Use
master
Declare
November 2, 2006 at 12:09 pm
When you say bew server, is it a completely new server, or did it have SQL Server installed on it previously? If you are loading SQL 2005 with a different...
November 1, 2006 at 11:37 pm
Use a semi-colon (command terminator) after the USE statement.
select @sql = 'Use MyOtherDB; create proc newsp as select 1'
November 1, 2006 at 11:18 pm
I no longer have both on my workstation as we are no longer using SQL 2000 here.
Is there anything that your developers would need to do that they can't do...
November 1, 2006 at 3:02 pm
Have you read this KB article? http://support.microsoft.com/kb/917406
It sounds like to me that once a DTS package has been edited in SQL 2005, it never works right in SQL 2000...
November 1, 2006 at 1:24 pm
I know that Enterprise Manager is a SQL 2000 client tool and that DTS packages are SQL 2000 as well, but my question is about the database engine. Are you...
November 1, 2006 at 12:03 pm
You should email the answer to everyone in the meeting,. I'm sure there are many people wanting to know the final answer ....... plus then they'll know that he is...
November 1, 2006 at 11:55 am
The reason schedules can be disabled separately is so that you can have more than 1 schedule and disable a single schedule without disabling the job. Suppose I need to...
October 31, 2006 at 11:49 pm
If you are going to do this on a regular basis, create a linked server.
October 31, 2006 at 11:38 pm
Are you connecting to SQL 2000 or SQL 2005 with Enterprise Manager? Enterprise Manager isn't forwards compatible with SQL 2005.
October 31, 2006 at 11:36 pm
And if you truly need to use wild cards, look up PatIndex() and Stuff() in Books Online.
October 31, 2006 at 11:49 am
You should consider using transactional replication.
October 25, 2006 at 10:53 pm
You can create a linked server connection to the MySQL database and execute queries directly across the linked server.
However, you don't want this in a trigger. Set up a process...
October 24, 2006 at 11:44 pm
I did not get this newsletter. If this is something that I have the ability to opt out of, I probanly have done so. I will check them out though.
October 24, 2006 at 11:00 pm
Maybe they did miss something. Perhaps what they need in addition to a default schema for a user is a default schema for the database. So it would assume the...
October 24, 2006 at 12:40 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,271 total)