Viewing 15 posts - 4,441 through 4,455 (of 13,465 total)
there sure is...
on the same page you posted, there's a drop down menu for Otehr versions...R2 was the sole selection, which redirects you to here:
http://msdn.microsoft.com/en-us/library/bb677408(v=sql.105).aspx
November 6, 2012 at 9:29 am
scogeb (11/6/2012)
Could you disable all logins except one, and use that login for this maintenance?
maybe a create a logon trigger that prevents anyone from connecting unless from local connection?
then do...
November 6, 2012 at 8:26 am
ok I've got this implementation in my snippets that does what you are asking.
see if this works for you.
you need a table and a procedure, shown below:
CREATE TABLE [dbo].[InvoiceKeys] (...
November 6, 2012 at 7:20 am
you can search fro more infor by searching "SQL SERVER CHANGE DATABASE OWNER;
the BOL Links are here for the explanation and the code:
ALTER AUTHORIZATION (Transact-SQL)
and a basic...
November 5, 2012 at 11:55 am
it's just a syntax issue;
CASE for SQL has two forms :
CASE ValuetoTest
WHEN SomeValue
THEN SomeOtherValue
ELSE DefaultValue
END
--OR
CASE
WHEN {SomeExpression} (ie SomeColumn = SomeValue)
THEN SomeOtherValue
ELSE DefaultValue
END
you werejust...
November 5, 2012 at 11:35 am
azinyama (11/5/2012)
Another question though...What would I then do about preventing people from using Windows Authentication to log in???
just because you have a windows login, does not auto-magically mean the login...
November 5, 2012 at 10:38 am
azinyama (11/5/2012)
I am developing an application that is going to be setup on a server that is in a public area, that anyone will have access to.
If you are trying...
November 5, 2012 at 7:51 am
you would want to save the filename as well, don't forget....
deepkt (11/5/2012)
CREATE TABLE Img(Id INT, Filename varchar(255), Obj VARBINARY(MAX))
INSERT INTO Img (Id ,FileName,Obj)
VALUES (1,'Blue Lace 16.bmp',(SELECT * FROM OPENROWSET(BULK...
November 5, 2012 at 6:52 am
CREATE LOGIN [appp]
WITH PASSWORD=N'NotTheRealPassword'
MUST_CHANGE,
DEFAULT_DATABASE=[master],
...
November 5, 2012 at 6:24 am
i see that error in other posts a lot because people place the mdf in their MyDocuments folder or on their desktop, which all have restricted access, and the service...
November 5, 2012 at 5:23 am
SET PARSEONLY ON/OFF works as well.
i'm having some fun trying to get a CLR to work as a proof of concept; i'll post it as soon as it returns results...
November 2, 2012 at 9:56 am
outsider32 (11/1/2012)
It is on the next line after the data, there is only one return after the data.So i'm getting:
Comments
(cursor here)
I am on version: 11.0.2100.60
I appreciate the help!
does the comments...
November 1, 2012 at 3:15 pm
SELECT * FROM FROM sys.objects
, yeah the parse assumes the second FROM is a table name, and so the alias 'sys.tables' is an error.
a longer, better error message comes from...
November 1, 2012 at 2:09 pm
I've played with this a couple of times, Jason; i've used it to chop a SQL statement into elements, so i could play with building my own formatter, and of...
November 1, 2012 at 1:51 pm
Data is the first thing that comes to mind.
If you save any data of any kind in that database, it would of course be unique to you and your...
November 1, 2012 at 8:43 am
Viewing 15 posts - 4,441 through 4,455 (of 13,465 total)