Viewing 15 posts - 16 through 30 (of 162 total)
Where did you buy it from? I am sure you can download it and use the license keys you received in the mail. It should work. I am just unsure...
February 1, 2010 at 5:32 am
Can you elaborate a little bit more on your problem so someone can help you?
Are you trying to take a backup of the jobs from Production live server?
February 1, 2010 at 5:27 am
SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
What does any of this mean?
It means you are not able to connect to Oracle from the SQL Server machine....
February 1, 2010 at 5:23 am
Is it really worth finding a solution for this? Seems like 4 lines of code that can be pasted in the stored proc once it has been reviewed. Sounds easy...
February 1, 2010 at 5:20 am
Try this
declare @id int
set @id = 001
While @id <=100
begin
insert myTable(Activity_Codes)
select 'GL'+ Right('000' + convert(varchar, @id),3)
set @id=@id+1
end
February 1, 2010 at 5:08 am
forum member (1/31/2010)
Hi There,insert into table(value1,value2)
values ('123', select id from table where section='section 1')
Try this instead.
insert into table(value1,value2)
SELECT '123', id from table where section='section 1'
January 31, 2010 at 9:46 pm
Like Gail has suggested, a Primary Key on Servername and AutoNumber would do the trick. I don't think a third column is needed. And you can set the Default Value...
January 31, 2010 at 2:56 pm
Interesting article but the last couple of lines is the most interesting I thought.
The idea of getting better performance, just from slipping your database into RAM is intriguing, but I'm...
January 31, 2010 at 2:52 pm
Please choose you comparison key carefully.
mohammed.arsalan (1/31/2010)
January 31, 2010 at 11:25 am
Did you transaction replication? That will require the least amount of change.
Please read up Transaction Replication
You may want to check with the vendor to find out if this is considered...
January 31, 2010 at 10:54 am
Table name is case sensitive because of collation settings on the server or the database.
Here is a link with SQL Server 2008 Collation Settings. There are some links at...
January 31, 2010 at 2:06 am
You should select a column or a set of columns that you can use to compare the data in the two tables. Usually this column or a set of columns...
January 31, 2010 at 1:45 am
Since you are backing up to a DISK, NOUNLOAD and NOREWIND can be excluded.
Also, it looks like you have an extra comma (,) before SKIP.
Do you get the error when...
January 31, 2010 at 1:41 am
Administrator account on the windows machine may not necessarily give him all the privileges in SQL Server. Is the administrator account part of the sysadmin role?
In SMSS when you expand...
January 31, 2010 at 1:28 am
Viewing 15 posts - 16 through 30 (of 162 total)