Viewing 15 posts - 7,636 through 7,650 (of 9,641 total)
You may want to check out the File Properties Task custom component created by PragmaticWorks:
September 4, 2008 at 6:49 am
You can use the default trace that is running on SQL Server 2005, it Audits logins and logouts so you can use the Audit Login event to see the logins...
September 4, 2008 at 6:41 am
This line:
field2 like '%some other value%'
Using a leading wildcard means an index normally will not be used.
September 3, 2008 at 10:17 am
You can only use a trigger for Insert\Update\Delete queries not Select and I don't think you can get the query text then either.
You can use SQL Server Profiler to set...
September 3, 2008 at 2:41 am
Sure. In SSMS go to SQL Server Agent -> Right Click -> Select Properties -> Select History and you can set the number of history rows total and per...
September 3, 2008 at 2:38 am
I don't know anywhere where the user name is stored. You can create a DDL trigger that can track that event. You also can check the default trace...
September 3, 2008 at 2:36 am
IF you are really running on SQL 7, 2000 then you are out of luck if you application/database does no auditing and you don't have a trace already running.
If you...
September 3, 2008 at 2:24 am
This will work:
create table #MaxCal ( Col1 int ,Col2 int ,Col3 int)
insert into #MaxCal select 12 ,53,65
insert into #MaxCal select 54,67,43
insert into #MaxCal select 12,67,35
Select
Case...
September 3, 2008 at 2:18 am
Try this:
Where
Case
When @PageSize = 0 Then 1
When RowNum Between...
September 3, 2008 at 2:09 am
Greg Charles (9/2/2008)
September 2, 2008 at 6:08 pm
Jeff Moden (1/2/2008)
September 2, 2008 at 3:12 pm
I have always used oledb connections and the "?" is the parameter placeholder in oledb. For the ADO.NET connections to SQL Server maybe you need to provide the parameter...
September 2, 2008 at 2:30 pm
Try localhost without the parentheses.
September 2, 2008 at 2:28 pm
A key point here is to make sure the events you are tracking include the TextData column. One way to get this working is to start a trace filtering...
September 2, 2008 at 2:26 pm
Viewing 15 posts - 7,636 through 7,650 (of 9,641 total)