Viewing 12 posts - 31 through 42 (of 42 total)
That's the thing, I'm not a DBA, I'm a developer and I use SQL everyday but the "security" aspect of SQL Server, that's new for me.
The server as been...
April 2, 2009 at 11:44 am
I didn't know about the stored proc "Sp_helprotect".
Thanks for the info, that helped a lot.
April 2, 2009 at 11:25 am
That works but is it normal that when I connect with this user I still see the master and tempdb?
Is there a way to remove the user's access to the...
April 2, 2009 at 9:37 am
Have you tried using a format file with your bulk insert. I use something like this :
BULK INSERT TBL_CLIENT_TEMP FROM ''x:\path\FileToImport.txt''
WITH (FORMATFILE = 'x:\path\FileToImport_Format.txt'', DATAFILETYPE = ''char'',
FIRSTROW = 2, KEEPNULLS,...
March 20, 2009 at 6:31 am
You can also use the BULK INSERT command with a BULK Format file.
March 20, 2009 at 6:12 am
SELECT REPLACE(STR(123, 9), ' ', '0')
generates an output like this...
000000123
March 18, 2009 at 8:31 am
Everything works better when you're KIS'ing, as a developper I can tell you that keeping it simple doesn't mean to write simple code. You can build something and work hard,...
March 12, 2009 at 9:17 am
Do I need to backup the system databases?
February 6, 2009 at 8:55 am
I'll go with the differential backup daily and the full backup weekly.
The transaction log, depending on the database and its purpose can go from hourly to daily.
Thanks Jack for the...
February 5, 2009 at 2:12 pm
January 30, 2009 at 8:01 am
Viewing 12 posts - 31 through 42 (of 42 total)