Viewing 15 posts - 916 through 930 (of 1,346 total)
I think you need to change it up a little.
For your parameter. the available values would be from your queried dataset, (All available states)
and your default would be a non...
September 27, 2005 at 2:27 pm
Your question is an oxy moron, can you elaborate on your question, and state what your trying to do.
The non queried default would be "Hard Coded"
a From Query default would...
September 27, 2005 at 1:26 pm
sp_executesql is exactly the same as sending an unparsed query from query analyzer.
It is parsed, normalized, compiled, optimized, and executed.
I would doubt its the sp_executesql method, but rather the query...
September 27, 2005 at 1:19 pm
You have a couple of things goin going on here.
When you construct a trigger you have to always make it accept data sets.
if you structure the trigger the way you have...
September 26, 2005 at 4:49 pm
Dunno,
But I never use drive definitions for network resources in batch files etc.
Use the UNC \\Servername\sharname. instead.
September 26, 2005 at 1:47 pm
In t-sql the Inner, or outer keyword is optional
inner join is the same as Join
Left Outer join is the same as left join.
I'm not sure if the ansi standards require...
September 26, 2005 at 1:30 pm
Check out the samples that come with reporting services.
There are a few examples,
Look at the company sales report, It doesn't show a subreport, but the visibility, and toggle visibility...
September 26, 2005 at 10:35 am
No , not really.
But is beneficial for things like creating aggregated data in a view. for summarization. But not neccesary.
I don't generally use views very often.
September 26, 2005 at 10:32 am
With windows logins, you should be able to see individual users added to the list.
domainname\username.
But if you have Domain groups. you cannot see individual members.
yes, deleting/denying access to domain, does...
September 26, 2005 at 10:30 am
select name
from master.dbo.Syslogins
this shows the login names, but if you administer authentication thru windows groups, you cannot look at the members of the domain groups thru this query.
September 26, 2005 at 9:44 am
sql_Dmo is a bunch of com objects that are used to interact with sql server.
When you use enterprise manager, alot of the work em does to sql is done thru...
September 26, 2005 at 9:38 am
sysindexes holds information about indexes, and There is not date in the table.
sp_helpindex authors displays no date information either.
September 26, 2005 at 9:25 am
You do not need to reclaim the space unless there is some kind of issue with disk space on your hard drive.
sql will reuse the space in the log. But...
September 26, 2005 at 9:22 am
No, You are mixing the old t-sql join syntax and the ansi join syntax, they can't be mixed, its one or the other.
Use Pubs
select *
from authors a
join titleauthor b on...
September 26, 2005 at 9:18 am
From Books online
A view can be thought of as either a virtual table or a stored query. The data accessible through a view is not stored in the...
September 26, 2005 at 9:11 am
Viewing 15 posts - 916 through 930 (of 1,346 total)