Viewing 15 posts - 1,891 through 1,905 (of 1,999 total)
cumulative permissions for all his roles in the database.
so public + other roles + specific user permissions + server permissions
July 27, 2004 at 6:54 am
the 3 status of any permission are
GRANT - tick
DENY - cross
REVOKE - empty
is the user on the new server a member of other databases ? was he on the last...
July 27, 2004 at 4:36 am
have you installed new network cards ?? are network cards load balanced ??
have you tried connecting to the server via TCP/IP ?
i have had something similar when using multiple NICS...
July 27, 2004 at 4:32 am
yes,
i agree on the latter points there - data Marts (or warehouses) should give you nice fast reports based on snapshot data, whilest freeing up your tables for faster...
July 27, 2004 at 2:39 am
just thinking ahead - you may have to use OPTION (MAXDOP,1) in there somewhere - it may get a bit confused with the union on the same table.
not sure whether...
July 26, 2004 at 7:43 am
Select Col1, Col2, Sum(Col3)
From
(
Select Col1, Col2, Col3 from T1
UNION
Select Col1, Col2, Datediff(HH, Col5, Col6) as COL3 From T1
)
group by Col1, Col2
i think that should do it
July 26, 2004 at 7:21 am
the only way i can see to do this is by seperating your stored procedures off into a seperate database.
you can then drant DDL to your developers for the...
July 26, 2004 at 7:12 am
what exactly do you want to do with COM, what languages are you looking to develop in???
also consider that .NET is now the logical replacement for COM
July 23, 2004 at 10:22 am
have a look at NetIQ's products
they will check out index sizes, database sizes, statistics, fragmentation etc over a perfiod of time and give you some nice trend graphs.
they have...
July 23, 2004 at 9:07 am
so what you're asking really is -- is there a way to detect whether it's BST or not from the current date? and then apply a date modifier if it...
July 23, 2004 at 7:52 am
can you post an example of the data - sureley you just need to use dateadd(hh,1,[date]) and dateadd(hh,-1,[date]) to go backwards and forwards one hour ???
July 23, 2004 at 7:19 am
have you tried diabling TCP/IP and using another protocol to test ?
July 23, 2004 at 6:43 am
first of all you're going to have to identify all of the duplicate surnames in your primary table and also all of the equivalents in your import table.
if you set...
July 23, 2004 at 6:38 am
there are several tools to do this - although i've found that the best way to do this is to us a bit of VB and use an ADO connection...
July 23, 2004 at 2:44 am
a - time for a joke about servers running FLAT out...
sorry
July 23, 2004 at 1:59 am
Viewing 15 posts - 1,891 through 1,905 (of 1,999 total)