Viewing 15 posts - 16 through 30 (of 83 total)
Do you want to import on a scheduled basis or do you just want to link and then create a view which shows everything dynamically in real time?
March 18, 2009 at 8:55 am
CREATE INDEX [NewIndexName] ON [ViewName]([ColumnName])
March 18, 2009 at 3:58 am
One option would be to create linked servers and then to create a view where you could do a union all to link tables together.
Create a linked server:
sp_addlinkedserver
@server='Target1',
@srvproduct='',
@provider='SQLNCLI',
@datasrc='SERVER'
Create...
March 17, 2009 at 8:41 am
Ells,
The AWE settings and the Min & Max memory settings are seperate. You do not need to turn AWE on to be able to set these.
For more explanation on AWE...
March 17, 2009 at 2:49 am
These OR branches are doing slightly different things and therefore i dont think i can do this using 1 statement.
This branch is bringing back the first byte from the columns...
March 16, 2009 at 10:40 am
Success. See what you think of this.
SELECT
su2.name as 'Owner',
so.name AS 'Object',
su.name AS 'Grantee',
su3.name AS 'Grantor',
'ProtectType'=
CASE sp.protecttype
WHEN 204 THEN 'GRANT_W_GRANT'
WHEN 205 THEN 'GRANT'
WHEN 206 THEN 'DENY'
END,
'Action'=
CASE sp.action
WHEN 26 THEN 'REFERENCES'
WHEN 178...
March 16, 2009 at 7:23 am
By the looks of things to fix this issue i cannot use the power function as that specifically returns an int value based upon the data type of the input...
March 13, 2009 at 7:54 am
Yep your right it falls over on the 32nd. Have been working on this since about 5 mins after posting the entire script. Will try and intgrated the new code...
March 13, 2009 at 7:14 am
Or the entire script to get all object based permissions is...
SELECT
su2.name as 'Owner',
so.name AS 'Object',
su.name AS 'Grantee',
su3.name AS 'Grantor',
'ProtectType'=
CASE sp.protecttype
WHEN 204 THEN 'GRANT_W_GRANT'
WHEN 205 THEN 'GRANT'
WHEN 206 THEN 'DENY'
END,
'Action'=
CASE sp.action
WHEN...
March 13, 2009 at 4:23 am
I tried you code but i didnt get the result i expected. Though thanks to the ideas put forward in your script i have managed to get what i think...
March 13, 2009 at 4:15 am
How would i join this to the varbinary value and also offset it as the first binary bit is the all permission setting?
March 12, 2009 at 9:01 am
Hi,
I have found the issue. I was given the package to troubleshoot without the knowledge that there was a custom dll in use. By adding this custom dll into the...
November 21, 2008 at 7:59 am
Have a look at this link and see if it helps.
June 24, 2008 at 12:23 pm
Have you tried looking at the history tab in the SQL Server Agent properties? This may be clearing some of the history information out.
April 21, 2008 at 10:03 am
Viewing 15 posts - 16 through 30 (of 83 total)