Viewing 15 posts - 2,761 through 2,775 (of 13,461 total)
you cannot rename an instance.
that means, for example, if you installed machinename\SQLEXPRESS, and you want to rename it to be machinename\SQL2008R2 that is not possible. you have to backup whatever...
December 17, 2013 at 9:55 am
renaming a server is a two part process;
one occurs at the operating system; the second is for convenience in SQl server.
You rename the server and then reboot.
AFTER that has occurred,...
December 17, 2013 at 9:33 am
scripting from the GUI, whether create or alter, will contain the same definition, but the GUI adds
this like SET ANSI_NULLS ON and other settings; potentially the USE [database] statement as...
December 17, 2013 at 8:42 am
well answers to questions for an Ingres database will hopefully conform closely with TSQL answers you get here.
the question is not really clear to me; when you run your max...
December 17, 2013 at 8:19 am
Minnu (12/17/2013)
Thank you for Speedy response.
my question is, when i print the values from trigger
print @id
print @name
Print '--'
am getting
1
D
--
but as per my table id's 1 and 2 are updting,...
December 17, 2013 at 6:11 am
i'm thinking that your user is in a windows group that grants them permissions you didn't expect.
this query seems to get all the individual mappings for all the groups i...
December 17, 2013 at 6:03 am
yeah syntax is important here;
you already identified that you know the a trigger should refer to the virtual inserted or deleted tables;
the key is that the original table needs to...
December 17, 2013 at 5:37 am
defyant_2004 (12/16/2013)
December 16, 2013 at 3:40 pm
defyant_2004 (12/16/2013)
Our DBAs are insisting that SQL Server Express does NOT provide the necessary tools to...
December 16, 2013 at 3:29 pm
As a DBA, the #1 reason (for me) I seem to need access to the server itself are for diagnosing ETL issues and managing of SSIS packages;
we have a...
December 16, 2013 at 3:24 pm
I think you'd just extend the WHERE statements in the query to also compare the @RoleId :
how about this?
and g.ID in
(Select ID From Groups
...
December 16, 2013 at 9:23 am
5.5.1 implies you did not set up your db mail to send the basic authentication to have the username and password:

December 16, 2013 at 7:58 am
jeganbenitto.francis (12/16/2013)
i have a row as below
1 AAAA BBBB CCCC DDDD EEEE FFFF GGGG HHHH
I...
December 16, 2013 at 7:18 am
whoops i cross posted from anotehr post;
can you show us /script out your linked server?
that would help us diagnose the issue for you.
December 16, 2013 at 6:50 am
look at the stored procedure in question...i'd bet it is referencing a linked server. the login is failing at the linked server because whoever is calling it doesn't have mapped...
December 16, 2013 at 6:21 am
Viewing 15 posts - 2,761 through 2,775 (of 13,461 total)