Viewing 15 posts - 226 through 240 (of 240 total)
Great script - Thank you very much!
Couple of suggestions:
1. In List Backup Set Details it seems to be reporting databases that were deleted as well as those that are currently...
June 18, 2010 at 8:16 am
bross 52202 (5/24/2010)
May 24, 2010 at 3:11 pm
Among Russian programmers there was a phrase that I can translate as “licking the code”. Just like cat or dog lick themselves in order to get clean, programmers lick their...
May 12, 2010 at 5:47 pm
All good stuff is in Enterprise...
This is better link to answer the question (I think):
http://msdn.microsoft.com/en-us/library/cc645993.aspx
--Vadim.
May 12, 2010 at 2:23 pm
I'm a bit confused. Several of you suggested using "fully qualified names". But this usually refers to using all 4 parts: Server.Database.Schema.Object.
Is that what you suggest we should use everywhere...
May 11, 2010 at 11:16 am
Here is MSDN article that shows processing order for SELECT:
May 7, 2010 at 1:30 pm
Good script - Thank you.
But it only runs for the server I’m currently connected to. Did I misunderstand your sentence about iterating thru servers?
--Vadim.
May 4, 2010 at 3:46 pm
There were plenty of postings about object search:
http://www.sqlservercentral.com/search/?q=search+objects+for+text&t=s
I also use SQL Search - still free from RedGate:
http://www.red-gate.com/products/SQL_Search/index.htm
--Vadim.
April 26, 2010 at 3:40 pm
You can also try STUFF function. Here is an example:
DECLARE @Tbl TABLE (Txt varchar(50));
INSERT INTO @Tbl(Txt)
SELECT 'Program SITE Location' UNION ALL
SELECT 'Program Division SITE...
April 26, 2010 at 2:28 pm
If specified @TargetFileSize cannot be reached your script will go into infinite loop.
--Vadim.
March 2, 2010 at 11:04 am
I thought the question was about Report Parameters but it’s obviously about Query Parameters.
What is SSRS report prompt?
--Vadim.
February 23, 2010 at 10:07 am
Nice script - Thank you.
One more problem: how to exclude OffLine databases? I've added
AND ISNULL(version, 0) > 0
and it seem to work with 2005 but...
February 19, 2010 at 3:00 pm
I've got that error too. When pasted in Notepad++ it looks like this:
select????distinct
????????@SearchCriteria as ZoekCriteria
????????, 'in code' as Classification
????????, b.type_desc
????????, object_name(a.id) "ObjectName"
????????, b.modify_date
from????syscomments a
inner????join sys.objects b
on????????a.id = b.object_id
where????a.encrypted...
November 16, 2009 at 11:50 am
SanjayAttray (9/14/2009)
http://en.wikipedia.org/wiki/Data_Manipulation_Language%5B/quote%5D
And that article says (bolds are mine):
The purely read-only SELECT query statement is classed with the 'SQL-data' statements and so is considered by the standard...
September 28, 2009 at 1:15 pm
Viewing 15 posts - 226 through 240 (of 240 total)