Viewing 15 posts - 9,196 through 9,210 (of 13,461 total)
boy these read just like homework questions.
what do you think the answers are?
troy2.net (6/23/2010)
1) Can we generate Trigger for two table and give a example ?
you can create a...
June 23, 2010 at 5:35 am
well it really depends on your application.
if your application is a client-server kind of app, then changing the connection string would be once-at-startup, and then an on-demand situation, where...
June 23, 2010 at 4:45 am
andrewkane17 (6/22/2010)
You can also use the below code, we use it to figure out group membership without having to engage domain admins.EXEC xp_logininfo 'whateverdomain\whatevergroup', 'members'
Andrew
omg that extended proc with no...
June 22, 2010 at 3:51 pm
Andrew i have this saved in my snippets; it's creating a linked server to Active directory, and querying for some stuff;
when i tried it on my own network, i didn't...
June 22, 2010 at 3:25 pm
this is outside my area of experience, but my Google-Fu skills are strong! I searched "ssas star or snowflake" and found some stuff.
i found this article about why snowflake is...
June 22, 2010 at 11:58 am
just because a table has no rows does not mean that table has not been referenced by a view/stored proc / function or external application; it is perfectly normal to...
June 22, 2010 at 8:02 am
are you confusing DBCC TRACEON with a system trace? (select * from sys.traces)
every DBCC TRACEON command does a different thing...some turn on something to be visible in performance counters, others...
June 22, 2010 at 7:55 am
this clearly identifies the issue, and it's outside of SQL server:
The server response was: 5.7.1 Unable to relay for aangie@ibmcore.org). )
that is one of the standard SMTP error messages.
that means...
June 22, 2010 at 7:45 am
wouldn't this just be a min( date), and count(*) grouped by customerid ,year(min(date))?? so you can calculate counts per year or some other period?
June 22, 2010 at 5:47 am
nite re-download the project one more time;
i tested it found some bugs and missing code, this versions much better.
June 21, 2010 at 8:17 pm
something like this is what you want;
the permissions is VIEW ANY DEFINITION, which is what you were asking for: let them see the text of any view/proc/function.
CREATE ROLE [ReallyReadOnly]
--give reader...
June 21, 2010 at 9:50 am
the recommended way is to take your script, which you already know works, and use SQL Agent to create a job from within SSMS, which runs on a regular basis.
while...
June 21, 2010 at 6:29 am
as Chirag alluded to, you can use the procedure sp_procoption to run a procedure when SQL server starts, but SQL Agent might not be running.
here's an article wher ethey discuss...
June 21, 2010 at 6:05 am
maybe i'm mis reading the request, but it seems to be "show SSMS reports in our application instead of SSRS web pages". I had thought it was different.
I'm assuming the...
June 21, 2010 at 5:45 am
Viewing 15 posts - 9,196 through 9,210 (of 13,461 total)