Viewing 15 posts - 406 through 420 (of 686 total)
Try this
EXECUTE sp_msforeachdb
'select getdate() as Date,
@@servername as Server,
''?'' as databaseName,
name as FileName,
type_desc as Type,
physical_name as PhysicalName,
size * 8 / 1024 as MB -- size is in 8KB pages
from [?].sys.database_files'
September 13, 2011 at 6:12 am
To shed a little different light on the conversation and shy away from the easily bashable healthcare disaster.
Military data could jeopardize lives. Time tables, personnel schedules, artillery coordinates, munitions locations,...
September 12, 2011 at 9:38 am
GSquared (9/9/2011)
ChrisM@Work (9/9/2011)
GSquared (9/8/2011)
...breeding dogs for 10,000 years has yet to produce a T-Rex...
Isn't it fortunate for us that this wasn't the intention from the outset?
I don't know.
I think scritching...
September 9, 2011 at 6:57 am
Ray K (9/8/2011)
Ray K (9/6/2011)
September 8, 2011 at 10:04 am
nidhi.ds.rapid (9/6/2011)
Thanks a lot !!So does that mean that creating an inline function is same as parametrized view.
Regards,
Nidhi
There is no such thing as a "parameterized view" in SQL Server.
September 6, 2011 at 9:09 am
You cannot create a parameterized view in SQL Server. A Table-Valued Function (TVF) would probably be your best bet.
something like this,
CREATE FUNCTION dbo.fxnExample (@Parameter1 int)
RETURNS @Results...
September 6, 2011 at 8:38 am
I'm sorry to hear that you had issues in upgrading to SP1. I can't give you a solid reason as to why it might have happened, but there's a...
September 6, 2011 at 8:23 am
Peter Maloof (9/6/2011)
Ray K (9/6/2011)
Well, it's September. Any bold predictions for the stretch run?The Yankees will win their division.
what the heck man!
I go away for a long weekend...
September 6, 2011 at 7:42 am
I can't help you with analyzing the error, but I can tell you that Ms. Shaw is the go-to lady for this stuff.
She usually says:
GilaMonster
September 1, 2011 at 8:01 am
I google'd your error and found it's a litespeed backup job?
This link explains it a little.
see if that Quest link answers your question.
August 31, 2011 at 11:47 am
What makes you think this is an error message for a failed backup? It says it is informational only.
August 31, 2011 at 11:22 am
I get this message when we do vulnerability scans doing port scans, as Roy mentioned.
I've also received this message when trying to telnet to the SQL box.
IMHO, It's a...
August 31, 2011 at 7:43 am
That is impressive.
They got a big jump in the HRs, RBIs, and runs scored stats department.
Geez, how do you let that happen to you. I didn't watch the game...
August 26, 2011 at 7:51 am
Three minutes too slow on a Friday morning.
Tony,
A great way to troubleshoot dynamic SQL related errors is to print the statement instead of trying to execute it.
Change exec (@testquery)
to...
August 26, 2011 at 6:08 am
Viewing 15 posts - 406 through 420 (of 686 total)