Viewing 15 posts - 61 through 75 (of 88 total)
Chris Conner (5/7/2009)
May 7, 2009 at 9:14 am
I'm pretty sure it's not possible.
May 6, 2009 at 12:24 pm
Lee From Bangalore (5/4/2009)
the users are administrator in Operating system
In sql server also they have Sysadmin.
But in sql server I dont want to give the sysadmin role to those...
May 6, 2009 at 9:02 am
I've had this happen to me. Change the owner of the db.
May 6, 2009 at 8:30 am
I haven't found a way yet but would be interested if there is a solution.
May 5, 2009 at 10:18 am
I'm a newbie at this but here is my solution to the second tougher example. I think it's right. I get the same results back.
Select h.SalesOrderID AS OrderNo,...
April 27, 2009 at 9:37 am
Chris Morris (4/9/2009)
Next:
A.[vchUser3] in (103235, 103236)
to
A.[vchUser3] in ('103235', '103236')
Well, that'll learn me. This was sent to me by someone else and I didn't really verify if the...
April 9, 2009 at 8:20 am
Chris Morris (4/9/2009)
SELECT E.[IncidentID], CAST(E.[IncidentID] AS NVARCHAR(25))
FROM store.dbo.orders E
WHERE CAST(E.[IncidentID] AS NVARCHAR(25)) LIKE '%.%'
Edit to add comment: This is the only column which doesn't have...
April 9, 2009 at 8:07 am
Chris Morris (4/9/2009)
ben.rosato (4/9/2009)
If you change the last join to the following it works:Inner JOIN store.dbo.orders E
ON CAST(A.[iSystemId] AS NVARCHAR(25)) = CAST(E.[IncidentID] AS NVARCHAR(25))
Both of those colums are indeed int
Try...
April 9, 2009 at 7:57 am
Nope, it doesn't work that way. From BOL
db_ddladmin
Members of the db_ddladmin fixed database role can run any Data Definition Language (DDL) command in a database.
db_datawriter
...
April 9, 2009 at 7:51 am
Tim Walker (4/8/2009)
April 8, 2009 at 8:07 am
Tim Walker (4/8/2009)
April 8, 2009 at 8:04 am
Krishna Potlakayala (4/8/2009)
ben.rosato (4/8/2009)
Results areCurrently allocated 11300.00 MB
Available free space 798.88 MB (7%)
So, its almost changing by 1GB?
Yep, It will go right back to 12300 MB exactly.
April 8, 2009 at 7:51 am
Results are
Currently allocated 11300.00 MB
Available free space 798.88 MB (7%)
April 8, 2009 at 7:47 am
Tim Walker (4/7/2009).
A maintenance plan that rebuilt indexes could cause this kind of effect. I guess a good clue is if your shrink leaves them pretty much full?[/quote]
Nope, I leave...
April 8, 2009 at 7:02 am
Viewing 15 posts - 61 through 75 (of 88 total)