Viewing 15 posts - 6,076 through 6,090 (of 13,460 total)
but the logon trigger only works if the person doesn't know how to change their connection string to explicitly say an application name:
so the logon trigger is not 100% realiable,...
Lowell
January 16, 2012 at 2:31 pm
snomad (1/16/2012)
1. What changed the password (if indeed it changed?) Or what else could have caused this?
There's nothing in...
Lowell
January 16, 2012 at 8:40 am
i'd avoid this at all costs.
functionally, I see you want to put the data into separate ytables because it makes "sense"...you want to compartimentalize the data the way you...
Lowell
January 16, 2012 at 7:31 am
niha.736 (1/16/2012)
:Wow: i got my clarification, many thanks mr.Lowell
No problem, glad i could help;
If you are coming from a programming background, Functions and Subs are interchangable, and the only difference...
Lowell
January 16, 2012 at 6:42 am
a foreign key can only be created against a column (or group of columns) which are either the Primary Key of the table, or has a Unique Constraint against it.
Based...
Lowell
January 16, 2012 at 6:36 am
niha.736 (1/16/2012)
If a table contain no records and if I write the statement as insert in functions and I also written it in the stored procedure, so, what will...
Lowell
January 16, 2012 at 6:32 am
without any auditing already in place, all you can do is prepare for it to happen again in the future.
http://www.ssmstoolspack.com/ has the free SSMS toolpack, and its "SQL History" feature...
Lowell
January 16, 2012 at 5:37 am
Markus this will get you started; this does a first level who's in which role; it does not handle nested roles, where eventually someone in a role, which is assigned...
Lowell
January 14, 2012 at 5:40 pm
glad I could help!
Lowell
January 13, 2012 at 2:32 pm
i played with making my own macro, but there are just so many variations/things to consider, you really need to do it in a programming language;
what's good for a SELECT...
Lowell
January 13, 2012 at 2:22 pm
azdzn (1/13/2012)
Lowell (1/13/2012)
instead, i'd do the following:.
1. script out your jobs in the msdb database,
2. script out the logins...
Lowell
January 13, 2012 at 12:35 pm
I wouldn't even try to restore a different server's system databases.
instead, i'd do the following:.
1. script out your jobs in the msdb database,
2. script out the logins with sp_helprevlogin
3....
Lowell
January 13, 2012 at 12:28 pm
@Bedrooms is an integer...you have to explicitly convert it when building the string:
'...Bedrooms='+ CONVERT(NVARCHAR,@Bedrooms) + '...'
Lowell
January 13, 2012 at 7:24 am
the openquery says the table starts with an underscore.
MarshAD.dbo._UserSummary works, but MarshAD.dbo.UserSummary fails;
looks like a simple issue to fix then.
Lowell
January 13, 2012 at 2:20 am
i always assumed a visit was the typical web session; 20 minutes of inactivity closes your session (or switching browsers, or closing and reopening?)
Lowell
January 12, 2012 at 5:54 pm
Viewing 15 posts - 6,076 through 6,090 (of 13,460 total)