Viewing 15 posts - 2,761 through 2,775 (of 13,469 total)
you posted in SQL2000, so be aware that if you meant 2008 or above, the ACE drivers would b eused instead.
typically, you will create a linked server, and reference...
December 17, 2013 at 12:40 pm
take a look at this post i participated in a while back; it's got some handy code for finding all invalid objects, which would happen on procs/functions/views if the underlying...
December 17, 2013 at 12:32 pm
i'd say it's a bad trigger.
it does not handle multiple rows at all.
there may be a logic hole here as well: it updates the entire contact2 table for any row...
December 17, 2013 at 11:58 am
seven columns in the table, only six in the query;
your table has the column name Logintime , but your query does not.
the implied column list, for when you say...
December 17, 2013 at 11:39 am
Mani-584606 (12/17/2013)
The script is giving database level permissions. I'm looking entire instance level.
For example the user has read on one database and write on another database and has view...
December 17, 2013 at 10:07 am
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
Viewing 15 posts - 2,761 through 2,775 (of 13,469 total)