Viewing 9 posts - 1 through 9 (of 9 total)
USE master
go
EXEC sp_grantlogin 'BUILTIN\Administrators'
go
EXEC sp_defaultdb 'BUILTIN\Administrators', 'master'
go
EXEC sp_defaultlanguage 'BUILTIN\Administrators', 'us_english'
go
EXEC sp_addsrvrolemember 'BUILTIN\Administrators', 'sysadmin'
go
IF EXISTS (SELECT * FROM master.dbo.syslogins WHERE loginname='BUILTIN\Administrators')
PRINT '<<< CREATED LOGIN BUILTIN\Administrators >>>'
ELSE
PRINT '<<< FAILED CREATING...
February 22, 2007 at 7:50 am
Hi Margaret. You may also have to grant the db_ddladmin role to that user in the database you are doing the bulk insert.
Try that.
November 15, 2006 at 8:22 am
You might try querying @@rowcount. It should contain the number of rows in your result set.
August 28, 2006 at 8:26 am
Thanks John, the package owner is set to a database account with sysadmin privilege.
If I drop the DTS job and reschedule it, eveything works fine. It's like the scheduler...
August 11, 2006 at 8:52 am
I'm not sure if this is what you are after or not, but check out master..sp_addserver. Once you run the proc with your new server name, you will have to...
July 31, 2006 at 8:02 am
If the result of select @@version is returning...
Microsoft SQL Server 2000 - 8.00.2039 (Intel X86) \tMay 3 2005 23:18:38 \tCopyright (c) 1988-2003 Microsoft Corporation \tStandard Edition on Windows NT 5.2...
July 31, 2006 at 7:50 am
If I configure the "log shipping" or "backup the transactions log in the 2nd server" in regular basis (every 20 minutes), do you think the performance will be affected?
I backup...
July 7, 2006 at 10:36 am
> We have been sucessful using BLAT (see http://www.blat.net) on SQL7, SQL2000 and SQL2005
I also use blat and have had great success with it. PLUS... its free.
June 1, 2006 at 8:43 am
Viewing 9 posts - 1 through 9 (of 9 total)