Viewing 15 posts - 8,926 through 8,940 (of 13,469 total)
sgambale (8/17/2010)
August 17, 2010 at 6:32 am
if you used the GUI, you can rename a stored procedure without having changed it's underlying definition. that was at least true in SQL 2000 with Enterpise Manager.
so i could...
August 17, 2010 at 6:17 am
balasach82 (8/17/2010)
Its ok if the user can delete his own tables, But other than the using trigger is there no way to stop the user from dropping other's tables?
that is...
August 17, 2010 at 6:10 am
the LEN() function ignores trailing spaces, even on a CHAR data type, where the DATALENGTH() function respects the spaces;
so to find exactly two trailing spaces in a column:
SELECT * FROM...
August 17, 2010 at 5:49 am
balasach82 (8/17/2010)
How Deny DROP access to a db_ddbladmin user. The user needs to create tables/views/sp's etc
you cannot modify the built in roles in any way;
what you want to do is...
August 17, 2010 at 5:38 am
ok i'm pretty sure you are pasting untested code, because the tables you pasted do not have the same column names as the trigger;
i'm not surprised nothing seems to work...the...
August 16, 2010 at 11:30 am
well, the way i read your trigger, it should be working just fine.
if you run this commnad, do you see changes in the status?
SELECT i.AppointmentUID,i.AppointmentStatusUID,StatusStartTime
FROM AppointmentStatusTransactions
GROUP BY i.AppointmentUID,i.AppointmentStatusUID,StatusStartTime
...
August 16, 2010 at 9:50 am
the UPDATE() function is so misleading.
the UPDATE() tests to see if the column name was specifically included/named in the update or not...it does not test if a value changed.
what...
August 16, 2010 at 9:27 am
ok, now it sounds like they added a custom data type; no big deal, but a bit harder to figure out.
In SQL, you can declare your own datatype, and decide...
August 16, 2010 at 7:49 am
eni11_g (8/16/2010)
pls help me with how to use sql server 2000, or 2005,2008 to send sms to mobile number if transaction is made on the database
every carrier has support for...
August 16, 2010 at 6:41 am
it's not possible. SQL Server will only run on a Windows operating system. so you can access and use a sql server from unix, but it cannot be hosted on...
August 16, 2010 at 5:17 am
Jeff run this command:
EXEC sp_help gl_text
a lot of results weill come up, but towards the bottom you should find all the foreign kesy in the table...scroll right...
August 13, 2010 at 2:02 pm
servername\instancename is resolved by the WINS service and the SQL browser. that's not exposed to the WAN, just TCP/IP addresses.
since you are using a firewall to the outside world, you...
August 13, 2010 at 1:44 pm
whenever you upgrade a system, or restore a database to a higher version, as i understand it the statistics used to get the database may be mis-interpreted by the newer,higher...
August 13, 2010 at 11:20 am
well lets try an example;
I invite everyone to build off this example and offer better suggestions.
lets say YourDomain\bob and YourDomain\tom are users who currently are in the builtin\Administrators group, have...
August 13, 2010 at 11:13 am
Viewing 15 posts - 8,926 through 8,940 (of 13,469 total)