Viewing 15 posts - 34,396 through 34,410 (of 39,726 total)
What version of client tools are you using? I can register my SS2K servers, SP3a on W2K from my W2K3 server.
November 7, 2004 at 8:51 am
What error are you getting? # and msg?
I'm not sure if this helps the server, but dbcc freeproccache will clear the cached plans from SQL Server. Might allow some memory...
November 5, 2004 at 11:08 am
Once SQL Server has the memory, unless the operating system requires it, it will not get released. How much memory on the server and what does SQL grow to?
QA and...
November 5, 2004 at 10:57 am
select * from information_schema.columns. Sort, rearrange as you like, then save the data into a file. (CSV) and open in Excel.
November 5, 2004 at 10:50 am
T-SQL, or Transact-SQL is from Sybase and I've been working with it since 92, when it was SQL Server 4.2 on OS/2, ported from Sybase v4.2 on *nix. I'd suspect...
November 5, 2004 at 10:27 am
select
case when t.type = 'D' then t.amount
end 'Debit'
, case when t.type = 'C' then t.amount
end 'credit'
from Transactions t
gets you them...
November 4, 2004 at 10:26 am
You should have your maint plans create a jog. The error code in the job is worthless, check the log.
November 4, 2004 at 10:25 am
If 2 is cast as a datetime, isn't it converting a null to 1-1-1900 then adding 2 to it? The explanation says:
The null value in SQL Server is converted to...
November 4, 2004 at 9:25 am
The explanation wasn't worded greatly and has been corrected. Also, the ordering can't be known, but it's assumed, at least by me, that the "second row" referred to the NULL...
November 3, 2004 at 10:04 am
I think you need to delete this file and initialize a new one for SQL Server backups.
November 3, 2004 at 9:55 am
No good one I've seen. Maybe mail the owner of this site: http://www.vba-programmer.com/RefDocs.htm
November 3, 2004 at 9:51 am
No,
hopefully in 2k5, but no way to do this now. I've administratively (through email/memo) set a policy and then used NGS Software' SQLCrack to look for passwords that don't meet...
November 3, 2004 at 9:50 am
This can and does occur. I think it might have been fixed in a SP so it's not the default, but it does happen. It might not happen on YOUR...
November 2, 2004 at 10:41 am
Viewing 15 posts - 34,396 through 34,410 (of 39,726 total)