Viewing 15 posts - 9,241 through 9,255 (of 26,490 total)
saltpepo (12/1/2012)
I want this output using dense rank eliminating repeating binder no
OFFICE_ID BINDER_ID BINDER_NO denserank
2105110 10 ...
December 1, 2012 at 2:54 pm
December 1, 2012 at 11:44 am
The evaluation version is the same as the enterprise edition. You will have to uninstall the evaluation edition and reinstall the standard edition.
November 30, 2012 at 11:09 pm
pooya1072 (11/30/2012)
i create a user in sql server 2008,i login with it .(it has sysadmin and public server role)
with this user i try to grant a permission to...
November 30, 2012 at 11:04 pm
If you are talking physically different hardware (could be two separate VM's on the same box as well), then they can be the same. If the instances are on...
November 30, 2012 at 11:01 pm
Rob Schripsema (11/30/2012)
However, is...
November 30, 2012 at 10:57 pm
Or, if you are doing an update, look at the end of this:
DECLARE @TestTable TABLE (
City VARCHAR(64)
);
INSERT INTO @TestTable
...
November 30, 2012 at 12:38 pm
This:
DECLARE @TestTable TABLE (
City VARCHAR(64)
);
INSERT INTO @TestTable
( City )
VALUES
('Augusta, GA'),
('Denver, Colorado'),
('Trenton, Nj'),
('Silao, Guanajuato'),
('Sioux Falls, Avera Hospital'),
('Reno, Nevada'),
('Fort Bragg,...
November 30, 2012 at 12:35 pm
Something like this:
DECLARE @TestStr VARCHAR(20) = 'Atlanta, GA';
SELECT
@TestStr,
CHARINDEX(',',@TestStr),
LEN(@TestStr),
LEN(@TestStr) - CHARINDEX(',',@TestStr),
STUFF(@TestStr,CHARINDEX(',',@TestStr),LEN(@TestStr),'');
November 30, 2012 at 12:16 pm
The following link should help you understand data type precedence better:
http://msdn.microsoft.com/en-us/library/ms190309(v=sql.100).aspx
November 30, 2012 at 7:24 am
Danah (11/29/2012)
It seems a bit odd to grant granular permissions to create objects at the database level, and then grant a blanket alter permission at...
November 29, 2012 at 11:31 pm
UncleBoris (11/29/2012)
November 29, 2012 at 11:25 pm
Jeff Moden (11/29/2012)
Lynn Pettis (11/28/2012)
November 29, 2012 at 9:23 pm
Okay, it isn't CREATE on the schema. From BOL regarding CREATE PROCEDURE:
Permissions
--------------------------------------------------------------------------------
Requires CREATE PROCEDURE permission in the database and ALTER permission on the schema in which the procedure is...
November 29, 2012 at 7:38 pm
Danah (11/29/2012)
Here is what I read (at http://msdn.microsoft.com/en-us/library/ms191291.aspx):
ALTER
Confers the ability...
November 29, 2012 at 6:52 pm
Viewing 15 posts - 9,241 through 9,255 (of 26,490 total)