Viewing 15 posts - 13,756 through 13,770 (of 26,486 total)
I have to agree with Anthony. Something changed the password, it isn't going to change itself. I'm not sure if the default trace will be of help as...
March 15, 2012 at 8:20 am
anthony.green (3/15/2012)
Msg 18456, level 14, State 1, Line 1
Login Failed for user ''
or
Msg...
March 15, 2012 at 7:27 am
Everyone is guessing at what you need. How about telling us what you really are trying to accomplish.
March 15, 2012 at 7:01 am
What we are trying to say is that we need more information. To convert seconds to time we need to know the basis of the seconds. Is the...
March 15, 2012 at 12:09 am
According to this, http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx#physical_memory_limits_windows_server_2003_r2, Windows Server 2003 R2 on 32 bit servers only supports 4GB ram.
SQL Server 2005 SE X32 supports what the OS supports, http://msdn.microsoft.com/en-us/library/ms143685(v=sql.90).aspx.
March 14, 2012 at 4:18 pm
According to this, http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx#physical_memory_limits_windows_server_2003_r2, Windows Server 2003 R2 on 32 bit servers only supports 4GB ram.
SQL Server 2005 SE X32 supports what the OS supports, http://msdn.microsoft.com/en-us/library/ms143685(v=sql.90).aspx.
Not sure if AWE is...
March 14, 2012 at 4:12 pm
Please read the first article I reference below in my signature block below regarding asking for help. Follow the instructions on what to post and how. In this...
March 14, 2012 at 3:34 pm
Please read the 2nd article I reference in my signature block below regarding ask for help with performance issues. Follow the instructions regarding what to post and how. ...
March 14, 2012 at 3:21 pm
ColdCoffee (3/14/2012)
Sample data
DECLARE @Table TABLE ( DatetimeasVC VARCHAR(30) );
INSERT @Table
SELECT '10/28/2011 11:47:55.686455 AM'
UNION ALL
SELECT '9/28/2011 11:47:55.123455 AM'
UNION ALL
SELECT '11/12/2011 11:47:55.789455 PM'
UNION ALL
SELECT '10/9/2011 11:47:55.9996 AM'
UNION ALL
SELECT '1/26/2011 11:47:55.3456...
March 14, 2012 at 3:09 pm
GilaMonster (3/14/2012)
Koen Verbeeck (3/14/2012)
Gianluca Sartori (3/14/2012)
Back on topic, yes, they definitely are: http://www.sqlservercentral.com/Forums/FindPost1266924.aspxI actually laughed out loud.
Well it's one of our old friends, so are you that surprised?
Amazing he is...
March 14, 2012 at 3:06 pm
GilaMonster (3/14/2012)
jcrawf02 (3/14/2012)
March 14, 2012 at 2:59 pm
ColdCoffee (3/14/2012)
Lynn Pettis (3/14/2012)
DECLARE @DatetimeasVC VARCHAR(30);
set @DatetimeasVC = '10/28/2011 11:47:55.686455 AM';
select convert(datetime,
substring(@DatetimeasVC, 7, 4) + substring(@DatetimeasVC, 1, 2)...
March 14, 2012 at 2:48 pm
Looks like each table variable needs to be declared separately, just like creating tables.
March 14, 2012 at 2:44 pm
Nope, I don't see what you are trying to accomplish. Might help if the expected results were formatted to see what values are in what column.
March 14, 2012 at 2:17 pm
SQLRNNR (3/14/2012)
GilaMonster (3/14/2012)
Stefan Krzywicki (3/14/2012)
GilaMonster (3/14/2012)
Gianluca Sartori (3/14/2012)
Back on topic, yes, they definitely are: http://www.sqlservercentral.com/Forums/FindPost1266924.aspx
Yes, I can think of a large number of ways not to use a linked server,...
March 14, 2012 at 2:11 pm
Viewing 15 posts - 13,756 through 13,770 (of 26,486 total)