Viewing 15 posts - 181 through 195 (of 254 total)
Okay, copy the script in full from this site and run it in the appropriate database (don't do anything past that point). Let me know if it at least creates...
September 5, 2012 at 9:33 am
Do you have the "@v_Output_Mode" parameter in the script?
September 4, 2012 at 9:19 am
It might, or at the least be easier to trouble shoot. The latest version is the one currently posted on SSC.com:
http://www.sqlservercentral.com/scripts/Administration/70243/
September 4, 2012 at 8:20 am
There were some changes to the script recently. Do you have the latest one?
September 4, 2012 at 8:16 am
Excellent article. Best read of the week. 🙂
August 1, 2012 at 9:31 am
Good idea and thanks for posting this. I may end up adding a "use or search" for wildcards switch in a later version. This would make it more flexible.
July 3, 2012 at 5:36 pm
When I originally designed the procedure it actually functioned the way you wanted it to. After a peer review with some colleagues, they all argued for the opposite (never can...
July 3, 2012 at 4:00 pm
Superb article. Well worth the read.
June 10, 2012 at 1:46 pm
If you need to include the schema, then something like this should do the trick:
FROM
'+@v_Database_Name+N'.[sys].[schemas] S
INNER JOIN '+@v_Database_Name+N'.[sys].[objects] O ON O.[schema_id] = S.[schema_id]
AND O.[type] IN ('+(CASE
WHEN @v_Object_Types IS NOT NULL...
April 18, 2012 at 5:34 am
You can modify the code temporarily by adding at line 232:
AND O.name = 'MY_TABLE_NAME'
So something like this:
FROM
'+@v_Database_Name+N'.[sys].[schemas] S
...
April 17, 2012 at 10:12 am
No problem. I seem to remember something about certain "date / time" columns in some of the system tables having ridiculous values (sometimes) for some reason which could be the...
April 5, 2012 at 1:33 pm
Are you able to isolate the SPID throwing the error? If yes, are you able to identify the column in question?
April 4, 2012 at 7:57 pm
Viewing 15 posts - 181 through 195 (of 254 total)