Viewing 15 posts - 7,366 through 7,380 (of 7,471 total)
identity just generates a (sequenced) number, but it does not generate it by recalculating it using the table itself, but it keeps it in a systemtable. It should be no...
August 29, 2003 at 1:04 am
The only time I ran regrebuild, I did not supply a parameter and it did the job. The reason I did not supply a parameter is because I did not...
August 29, 2003 at 12:36 am
Check "registry rebuild" in books online.
(regrebld utility)
August 28, 2003 at 12:08 am
I don't know such a tool.
IMO changing the system-date might be no issue on a TEST server, but on a production environment ???
Provide the date with a parameter to your...
August 28, 2003 at 12:01 am
Select 'print '' object : ' + u.name + '.' + o.name + ''' ' + char(13) + ' go '+ char(13)
...
August 26, 2003 at 1:23 am
Maybe this can get you on tracke:
CREATE TABLE #tInfo (SQLServerComputerName nvarchar(500))
insert into #tInfo (SQLServerComputerName)
exec xp_cmdshell 'net name'
select SQLServerComputerName from #tInfo
drop table #tInfo
Don't open your cmdshell...
August 26, 2003 at 1:07 am
are you lookig for xp_cmdshell 'net name' ?
August 26, 2003 at 12:44 am
This is "nice to know"-stuff that helps to get you good credibility. But because it all gets more integrated, the "nice to know" tends to be...
August 1, 2003 at 7:15 am
I know this might be regarded as prejudiced source, but anyway :
- http://www.microsoft.com/sql/evaluation/compare/default.asp
- http://www.aw-bc.com/catalog/academic/product/0,4096,0201752832-TOC,00.html
- http://www.pinnaclepublishing.com/SQ/SQmag.nsf/0/73F96D35618BBF56852568D0007691CC
- http://www.benchmarkresources.com/?cat=3&Sel=Database
Edited by - alzdba on 07/31/2003 08:17:57 AM
July 31, 2003 at 8:05 am
Did you check the sqlserver-server's local (nt/w2k)-group members for guests and/or users to contain the needed domain-usergroups ? (e.g. yourdomain\domain users)
July 31, 2003 at 6:56 am
You're in deep sh**. This is mainly about politics.
Unless there are some issues you can only solve with oracle, there is no reason to migrate. (guess not because now...
July 31, 2003 at 3:58 am
Regarding windows-authentication, check if the 'Developer'-group is added to the local\groups\guests or users of your sqlbox (or a group they are member of).
July 31, 2003 at 1:14 am
Check the IIS anonymous login setting. Maybe someone did put an overauthorized user-account overthere.
July 31, 2003 at 12:04 am
Seems fine, but check this :
(You'll need to grant read access to all needed objects in stead of only to the sp(s))
-- TESTSCRIPT based on Northwind
-- create SQL-user-login
sp_addlogin @loginame =...
July 30, 2003 at 7:46 am
Viewing 15 posts - 7,366 through 7,380 (of 7,471 total)