Viewing 15 posts - 1,786 through 1,800 (of 1,995 total)
what version of outlook do you have installed on the SQL server?
April 29, 2005 at 10:08 am
if i understand correctly your form may be doing something along the lines of
dim db as database
set db=currentdb()
dim qdef as new querydef
set qd=db.querydefs("myquery")
qdef.sql="create table dbo.mytable.......blah blah....."
you can then simply...
April 13, 2005 at 2:38 am
Please also note that the role is customer facing and would require regular visits to sites across the UK (1-2 days per week)
February 16, 2005 at 2:15 am
how about creating second filegroup and moving text and indexes to the new filegroup -
performance would be up(as one set of disks scan indexes, the other scans the...
January 14, 2005 at 9:57 am
we've also come across this problem at a site we visited recently
we tracked this back to the following
http://support.microsoft.com/default.aspx?scid=kb;en-us;328197
the exhange server became unavailable (for a directory lookup) as sql agent...
January 14, 2005 at 9:44 am
I've had the same problem, but not from a java app.
in my case this was down to the ODBC configuration overiding the default language setting for your user login.
check your...
January 13, 2005 at 2:31 am
here is the post from BOL
WITH CHECK | WITH NOCHECK
Specifies whether the data in the table is or is not validated against a newly added or re-enabled FOREIGN KEY or...
November 3, 2004 at 2:25 am
not sure about in sql 6.5 but in 7 and 200 you can use the ISQLW.exe to pass sql statements to SQL server from a dos window. you can also...
November 2, 2004 at 7:02 am
how about using an alert.
you could use the alert to add rows to a table when the raiserror generated by a failed insert or update is executed.
October 26, 2004 at 6:28 am
what about referential integrity - primary key foreign key relationships.
if you build these relationships on unique indexes (not keys) then products like MSACCESS would not be able to update...
October 11, 2004 at 6:27 am
you could try the following in your master,msdb database and vendmax databases
select sysobjects.name,syscoments.* from syscomments,sysobjects where syscomments.text like '%BACKUP DATABASE%' and sysobjects.id=syscomments.id
this will list all f the stored procedures that...
September 21, 2004 at 10:09 am
also - set the file to read only - then see what complains!!
September 21, 2004 at 7:18 am
have you looked in the sql agent - jobs section - are there any jobs you don't recognise??
also this backup could have been added as a second step...
September 21, 2004 at 7:18 am
according to lots of articles on micorosoft.com xp sp2 disables ports 1433 and 1434 and 455(TCP and UDP and Named pipes) by default
you can re-enable these in the XP security...
September 8, 2004 at 5:56 am
debugging oracle syntax error's isn't something most SQL server DBAs could do.
you could try lazydba.com - they have sections for oracle & SQL problems
August 20, 2004 at 4:15 am
Viewing 15 posts - 1,786 through 1,800 (of 1,995 total)