Viewing 15 posts - 106 through 120 (of 162 total)
You can many tools to migrate data from SQL Server to Oracle or other data platforms and vice versa. Since it is 2000, you could use DTS. if you have...
December 31, 2009 at 1:38 am
NULL represents a value that is "Unknown" or "Not Known".
If you add something to "Unknown" the result will be unknown so 1+NULL = NULL.
In the case of SUM function, I...
December 31, 2009 at 12:35 am
Adding indexes on columns in general depends on a lot of factors.
Adding an index on a foreign key column would make sense if both the parent and child tables have...
December 31, 2009 at 12:27 am
Can you elaborate on your question? Its very vague. Report should never be used to update data.
August 22, 2009 at 2:22 pm
Here is a link that explains UAC and a step by step guide.
http://technet.microsoft.com/en-us/library/cc709691(WS.10).aspx
August 22, 2009 at 2:15 pm
Really dumb of me. In the Browser, security options for Intranet sites, i set it automatic login using current username and password fixed the issue.
Thanks GP for your help. All...
August 22, 2009 at 1:53 pm
What is the content database reference? Is it sharepoint content database?
Thanks
August 20, 2009 at 6:11 pm
The backupset table has the necessary information. Try running this query. You can exclude the where criteria for all database backup operations.
select TYPE, media_set_id, first_lsn, database_backup_lsn, backup_start_date, database_name, differential_base_lsn
from msdb.dbo.backupset
where...
August 19, 2009 at 5:51 pm
Interesting article. I used to wonder why companies dont do that. Few years ago I was trying to fill a position at the company I was working. I went through...
August 19, 2009 at 5:32 pm
Permissions are set. The Report Manager URL is part of the trusted sites.
The user is an administrator on the machine. Have set the services to run using the specific user...
August 19, 2009 at 5:15 pm
I know you can limit the total number of concurrent user connections to a max of 32767 but dont believe it can be limited for a specific user.
August 19, 2009 at 4:39 pm
GP,
I reviewed stuff on the link. I have checked everything and still dont have the issue resolved.
Anything else I can check.
Appreciate the help.
Thanks
August 19, 2009 at 4:34 pm
Try this one. I had to use this open source on of my projects.
August 18, 2009 at 5:24 pm
You could use SSIS to accomplish that. Without spedning too much time, you could use a combination of Script Task and FTP Task in SSIS to do what you need.
Assummption...
August 18, 2009 at 5:19 pm
Viewing 15 posts - 106 through 120 (of 162 total)