Viewing 15 posts - 7,636 through 7,650 (of 9,643 total)
You can use the sys.extended_properties view to get the information from extended properties. I believe the idea around extended properties is to give the database designer/developer a place to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 4, 2008 at 7:01 am
I'm not sure what you are asking. What you get from uniqueidentifiers is what they are. Can you be more specific about your question.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 4, 2008 at 6:53 am
You may want to check out the File Properties Task custom component created by PragmaticWorks:
http://www.pragmaticworks.com/FilePropertiesTask.htm
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 3, 2008 at 2:24 am
Hey I typed faster this time.:D
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 3, 2008 at 2:19 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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 3, 2008 at 2:18 am
Try this:
Where
Case
When @PageSize = 0 Then 1
When RowNum Between...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 3, 2008 at 2:09 am
Greg Charles (9/2/2008)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 2, 2008 at 6:08 pm
Jeff Moden (1/2/2008)
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 2, 2008 at 2:30 pm
Viewing 15 posts - 7,636 through 7,650 (of 9,643 total)