Viewing 15 posts - 796 through 810 (of 1,654 total)
Did you create Logins in SQL server for the non-admin users?
Sounds like the admin users can access SQL Server through the Built-IN\Adminstrators group while non-admin users have no login/user account...
[font="Verdana"]Markus Bohse[/font]
August 6, 2008 at 4:13 am
The reason you don't get the results you're expecting is that Full-text search uses a list of noise words. Noise words are words which normally are not very usefull during...
[font="Verdana"]Markus Bohse[/font]
August 6, 2008 at 4:10 am
I'm afraid you won't find what you're looking for by looking at SPID's.
Basically whenever a new connections is made to SQL Server it will get the lowest free SPID...
[font="Verdana"]Markus Bohse[/font]
August 6, 2008 at 1:53 am
You need to join sys.objects with sys.schemas.
Something like this
SELECT s.name + '.' + o.name FROM sys.objects o
JOIN sys.schemas s ON o.schema_id = s.schema_id
[font="Verdana"]Markus Bohse[/font]
August 5, 2008 at 2:30 am
About the licensing issue I'm also not really a 100% sure, but I think that it's ok to manage your Express editions from SSMS which is covered by any other...
[font="Verdana"]Markus Bohse[/font]
August 4, 2008 at 3:55 am
heftyp (8/1/2008)
I've been working on documenting a standard install myself. A couple other things I'm looking into...
[font="Verdana"]Markus Bohse[/font]
August 1, 2008 at 6:36 am
raj (7/31/2008)
select * from tablename where Id in ( select top 1 Id ...
[font="Verdana"]Markus Bohse[/font]
August 1, 2008 at 1:52 am
The only thing I can think of is using a logreader tool to see in the transaction log (or backups) when a certain record has been inserted/updated.
But if this...
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 8:58 am
Prakash,
there's no way to find the last record with a query in your design. That's why I always advise to add a createdate and changedate column to all tables.
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 7:42 am
Is your database in Full recovery mode? If yes, do you take transaction log backups?
If not your ldf will keep all the transactions and will grow unutil the disk...
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 7:37 am
If you add the same PK value on the publisher and subscriber before synchronisation, it will result in a conflict. What happens next depends on the conflict handler you've chosen....
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 4:29 am
Using an increment of 2 won't help you, because you will still get conflicting id's. You could use different seed values lie 1 on serverA and 2 on ServerB and...
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 4:24 am
It should be
DataSource: MS SQL SERVER ( ole db)
Server Name: Servername\ServerInstanceName
You need to use a backslash between server and instancename
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 3:44 am
Try one of these:
http://www.wangz.net/cgi-bin/pp/gsqlparser/sqlpp/sqlformat.tpl
or
[font="Verdana"]Markus Bohse[/font]
July 31, 2008 at 3:42 am
Viewing 15 posts - 796 through 810 (of 1,654 total)