Viewing 15 posts - 8,941 through 8,955 (of 13,469 total)
a sysadmin can't be prevented from access...that's kind of the point of the sysadmin; access to everything.
if people have sysadmin priviledges and shouldn't, then you need to remove them; then...
August 13, 2010 at 9:23 am
i would do this from a single machine; make a .NET app that connects to each of the 125 servers, one at a time (or run multi threads)..which reads the...
August 13, 2010 at 8:05 am
you can add custom VB.NET code, like functions to your report so you can use them in the report;
for example, go under Reports?ReportProperties and go to Code Tab.
add these two...
August 13, 2010 at 6:42 am
ningaraju.n (8/13/2010)
Hi All,I have a question ,Is parsing xml leads to performance hit?
i like to think of xml as a table or table variable. since xml is not indexed the...
August 13, 2010 at 6:16 am
Declare @cmds Nvarchar(MAX)
Declare @obfoo varbinary(MAX)
Set @cmds = '
PRINT ''This binary string will execute "SELECT * FROM SYS.OBJECTS":''
SELECT * FROM SYS.OBJECTS
'
Set @obfoo = CAST(@cmds as varbinary(MAX))
Select @obfoo
select '
declare @_ as varbinary(max)
set...
August 12, 2010 at 5:22 pm
good eyes!
i assumed his "DISTINCTROW" was an error and he meant DISTINCT...i should have noticed which forum;
LutzM (8/12/2010)
You posted in the ACCESS forum so...
August 12, 2010 at 12:23 pm
here's my wild guess:
--EDITED/REMOVED, as this is a homework question;
see a second students post at
http://www.sqlservercentral.com/Forums/Topic979463-23-1.aspx#bm979690
August 12, 2010 at 12:04 pm
i would ignore the joins completely and just use a CASE to evaluate each of the yes/nos instead;
don't really think i need to abstract out a Y/N value to a...
August 12, 2010 at 10:15 am
yes, it'll be a bit slow, because you'll have to convert the TEXT field to a varchar(8000);
here's an examplei put together, note how i made a searchterm in a subquery,...
August 12, 2010 at 10:10 am
provide to a user ?!?! every varchar/char/nvarchar/nchar column in the database?
unless this is for a developer to fix some code, as already suggested, you really need to use full...
August 11, 2010 at 12:21 pm
yes that's correct...but it depends on your data as to whether it will be blank or find a value...i assumeed one space between each ite,.
if there are TWO spaces between...
August 11, 2010 at 10:03 am
originally you had posted that you had a table dbo.NEWDUNDD_SEACX with a column f1
because you had no CREATE TABLE or INSERT INTO scripts, i created my own table wth...
August 11, 2010 at 8:24 am
in Win7 and Vista, security is a little tighter...you don't get added automatically to the instance you are installing. One of the steps during the install is to add yourself...
August 11, 2010 at 6:44 am
is it really string manipulation?
if it's a float/decimal, you could subtract the FLOOR() of the value from itself to get the remainder:
declare @val float
set @val = 10.8061111111111
SELECT @val - floor(@val)--returns...
August 10, 2010 at 10:12 am
noone answered your post for a long time because you didn't provide the esentials...the CREATE TABLE definitions of your tables.
here is an example, but it's based on wild guesses as...
August 10, 2010 at 9:52 am
Viewing 15 posts - 8,941 through 8,955 (of 13,469 total)