Viewing 15 posts - 10,396 through 10,410 (of 13,460 total)
here's an example I hope helps you visualize it:
you want to try to give users only the rights they need.
use [SandBox]
--grant select/insert/update, but Not Delete to a specific table
CREATE ROLE...
Lowell
October 26, 2009 at 10:14 am
i've got this saved in my snippets, but it would add only two decimal places, not three...does that matter to you?
results
@test-2 formatted
7265342 ...
Lowell
October 26, 2009 at 7:26 am
Ranga it doesn't matter which account YOU logged in with.
when SQL server tries to access anything outside of the SQL instance(xp_cmdshell, files/folders/, network shares, anything outside of it's own databases)
it...
Lowell
October 26, 2009 at 6:51 am
tan110 (10/23/2009)
I need the results to be something like this:
filepath ...
Lowell
October 23, 2009 at 4:33 pm
outgoing mail tick box for SSL required is ticked and using my password and user name.
i don't think this should be checked...that means use https: or whatever the equivilent is...
Lowell
October 23, 2009 at 11:06 am
change your screen resolution;
I've had that happen to me in visual studio, where the find and replace comes up as an undocked window, and gets tossed to a point that...
Lowell
October 22, 2009 at 9:58 pm
it's actually usually used for parsing up a Server.Database.Schema.Tablename object, but like you identified, works perfect for IP addresses as well; anything that is getting chopped up by periods; I've...
Lowell
October 22, 2009 at 9:44 pm
if there are exactly 3 decimals/4 parts in your string, you can use the built in function PARSENAME.
otherwise, it's the same idea, just more involved by using CHARINDEX and SUBSTRING
declare...
Lowell
October 22, 2009 at 1:56 pm
why not use a windows group that has admin rights? you give them a network login, set the password to expire in three days or whatever, and you are done;
they...
Lowell
October 21, 2009 at 7:40 pm
ok this was a kewl project for me;
to solve it, i used a function similar to CHARINDEX, but i used the AT() included below...it returns the Nth occurrance of a...
Lowell
October 21, 2009 at 9:19 am
frank what we are looking for is the specific rule so we can help you;
for example is this statment true:
in the data sample like this:
'\\axis552\ABCS$\File_Provs\Anderson_Company\837\X0102022005009253218.TXT'
'\\axis552\ABCS$\File_Provs\Franks_Company\9422\X0102022005009253218.TXT'
'\\axis552\ABCS$\File_ProvsBAK\Lowells_Company\subdir\X0102022005009253218.TXT'
"from right to left,one subdirectory exists...
Lowell
October 21, 2009 at 7:56 am
i think this is what you are looking for; you need to use a CASE to get your "conditional" count that you were trying to do in the internal WHERE...
Lowell
October 20, 2009 at 12:05 pm
the command you pasted is just one piece (actually the last step) of enabling FILESTREAM on 2008:
it's got a syntax error as well; it should be thisL
EXEC sp_configure filestream_access_level, 2
RECONFIGURE
http://msdn.microsoft.com/en-us/library/cc645923.aspx
Before...
Lowell
October 20, 2009 at 11:28 am
not true; SQL 2008 Express supports filestream:
Microsoft (10/20/2009)
SQL Server Express
SQL Server Express supports FILESTREAM. The 4-GB database size limit does not include the FILESTREAM data container.
However, if FILESTREAM data is...
Lowell
October 20, 2009 at 11:01 am
Elliot kick *** giving us the sample data to test with!
don't know how close it is to the original posters, but i got similar results whether i choose t1.ZipCode or...
Lowell
October 19, 2009 at 7:59 pm
Viewing 15 posts - 10,396 through 10,410 (of 13,460 total)