Viewing 15 posts - 16 through 30 (of 82 total)
Thanks for your input
Not exactly the same DB, but something close. He has the full data amout, but I have views and he uses them converted to tables. However, the...
January 9, 2007 at 4:13 pm
OMG! That's true.
I had never believed that could be true.
Thank you both!
February 28, 2006 at 3:21 pm
But I'm adding a user, it's not an object.
EXEC importeddb.dbo.sp_grantdbaccess 'user'
Won't work since sp_grantdbaccess is a procedure stored in master db.
February 28, 2006 at 12:34 pm
The best solution I got is like Jo's one. Re-select the field to sort by that field.
A boogie-man tsql story. I hope that to be solved in sql2005.
Thanks!
SELECT TOP 10 S.id_solicitud,...
February 3, 2006 at 3:17 pm
Hi Jo
Unfortunately that gives the same result, this way the result has sense for me, since the ORDER BY is referencing the resulting column instead the source one.
Another shot?
February 3, 2006 at 11:50 am
Hi Mathew.
That did'nt work either. The "2" references the column after processing, this equivals the "fecha_creacion" without the S prefix.
In other words, that is what is happening with the original...
February 3, 2006 at 11:37 am
And what about taking dettach-rename-reattach? As far as I understand this will leave us with the old "name" too, but without a way to change it :-
I know to lurk...
January 13, 2006 at 4:28 pm
No, I have not MOM, but Brian's proposal about Full Text made me look the service list.
...And found a LogPI agent that shouldn't be there anymore. Stopped it and the...
January 6, 2006 at 10:51 am
For example, this is the resulting message from a SP trying to backup a non-existent DB:
Server: Msg 911, Level 16, State 1, Procedure usp_FullBackupDb, Line 25 Could not locate entry in...
December 29, 2005 at 1:48 pm
Good one, however:
SELECT DATEDIFF(Year, 0, convert(datetime,'2005-12-14')-convert(datetime,'2003-12-15'))
Will return 2, a "-1" completes it
SELECT DATEDIFF(Year, 0, convert(datetime,'2005-12-14')-convert(datetime,'2003-12-15')-1)
Thanks!
December 1, 2005 at 5:00 pm
Great!!
That function is shorter than the one I was building
Thanks!
December 1, 2005 at 10:48 am
You can limit the access to that database within the same instances (I am hoping sa password is kept confidential and all user are not administrator)
Yes and no. SA password...
September 7, 2005 at 5:14 pm
You were right, I changed the SQL account from System Account to explicitly the one that runs the desktop and it worked.
But now I don't know the difference (for SQL...
July 19, 2005 at 9:36 am
Viewing 15 posts - 16 through 30 (of 82 total)