Viewing 15 posts - 1,681 through 1,695 (of 2,008 total)
daveriya (11/11/2011)
i did it,still its not showing
USE <database_name>;
GO
SELECT name AS SP_name
,SCHEMA_NAME(schema_id) AS schema_name
,type_desc
,create_date
,modify_date
FROM sys.objects
WHERE type_desc LIKE '%STORED_PROCEDURE';
GO
If you can find your...
November 11, 2011 at 9:19 am
What exactly do you mean by 'a full backup (offline)'
I guess its OS backup of database files (MDFs & LDFs) either by DETACH or OFFLINE (preferred). It's common in Oracle...
November 11, 2011 at 8:37 am
100% CPU consumption could be result of any activity on Server, not necessarily SQL Server.
November 11, 2011 at 8:22 am
Lowell (11/11/2011)
this will be what you are after i think:
CREATE TRIGGER Trgr_Update_LastModifiedOn
ON SERVERINFO
AFTER...
November 11, 2011 at 8:14 am
sami.sqldba (11/11/2011)
November 11, 2011 at 8:04 am
Take out BEGIN & END after AS.
CREATE TRIGGER [ schema_name . ]trigger_name
ON { table | view }
[ WITH <dml_trigger_option> [ ,...n ] ]
{ FOR | AFTER | INSTEAD...
November 11, 2011 at 7:55 am
Lowell (11/11/2011)
is there a question in there somewhere?
May be FYI (to SSC). 😀
November 11, 2011 at 7:52 am
Ninja's_RGR'us (11/11/2011)
Dev (11/11/2011)
If you don't specify ORDER BY with TOP , the resultset order would be uncertain (random) ONLY.
My fav signature from Lowell =>
Lowell
--------------------------------------------------------------------------------
--There is...
November 11, 2011 at 7:49 am
Based on your extensive testing of this case?
It's obvious that we will save processing time that SQL Server will take for string functions.
November 11, 2011 at 7:47 am
Ninja's_RGR'us (11/11/2011)
schumichen (11/11/2011)
maybe its better to make a new column with the domains ?
like
id,url,domain
so would that be easier...
November 11, 2011 at 7:38 am
If you don't specify ORDER BY with TOP , the resultset order would be uncertain (random) ONLY.
November 11, 2011 at 7:34 am
schumichen (11/11/2011)
maybe its better to make a new column with the domains ?
like
id,url,domain
so would that be easier to...
November 11, 2011 at 7:28 am
DML trigger statements use two special tables: the deleted table and the inserted tables. SQL Server automatically creates and manages these tables. You can use these temporary, memory-resident tables to...
November 11, 2011 at 6:37 am
Viewing 15 posts - 1,681 through 1,695 (of 2,008 total)