Viewing 15 posts - 16 through 30 (of 71 total)
It has been there since 6.5 - but I cannot guarantee about future versions.
December 5, 2005 at 1:45 pm
General Network error is very generic, as it states - it is hard to jump to a conclusion or determine the cause. I have seen it coming up if the...
December 5, 2005 at 12:02 pm
Although not recommended, u can create a trigger on sysconfigures. User options are based on connection.
try looking into the documentation for
DBCC USEROPTIONS
Use the user options option to specify global defaults...
December 5, 2005 at 11:58 am
SELECT fileid, name, filename, size, growth, status, maxsize FROM dbo.sysfiles WHERE (status & 0x40) <> 0
DBCC sqlperf(logspace)
DBCC showfilestats [undocumented]
December 5, 2005 at 11:43 am
It is just confusing terminology. Tape Device can have the same disk backup file (backup device in terms of HDD) - offcourse in the MS Tape Format.
You can have SomeDBBakup.BAK...
December 5, 2005 at 11:34 am
SQL Server Terminology has different meanings for Servers, Named Instances and Databases. You cannot have 2 databases or two named instances with same name.
December 5, 2005 at 11:27 am
If u do a Select with LastModifiedDate in the paramenter - does the select return data?
December 5, 2005 at 8:31 am
What r the exact table names for both tables. Turn on the profiler trace and run UPDATE on both check what happens?
December 5, 2005 at 8:30 am
Helen
Please have a look @ http://support.microsoft.com/?kbid=902388
December 5, 2005 at 8:23 am
This problem is by product design. U cannot have two backup plans for the same database - either u choose backups or Log shipping, because they essentially mean the same...
December 5, 2005 at 8:20 am
If the database was not shutdown cleanly before detach it is not possible to attach the file using sp_attach_db or sp_attach_single_file_db.
Try this:
Checking Files before Attaching
You should note that you...
December 5, 2005 at 8:07 am
search BOL for inserted tables
Str or convert or cast function can change the datatype
information_schema.columns can give u the list of columns in a table
SELECT user_name() will give u the username
December 5, 2005 at 7:59 am
If you run the following with actual parameter values, does that work?
UPDATE dbo.Document
SET DocTitle = @DocTitle, ReviewEvery = @ReviewEvery, Obsolete = @Obsolete, ObsoleteDate = @ObsoleteDate,
Comments = @Comments, OldDocNo =...
December 5, 2005 at 7:50 am
Run the TSQL (xp_cmdshell) script inside the package in Query Analyzer and find out the error. Use the same login which is used by the package to run. Le me...
December 1, 2005 at 1:54 pm
Try the Select without the sp_execute with all parameters and check the performance. Isolate the problem further by trying it locally on the server and from the client to rule...
December 1, 2005 at 1:34 pm
Viewing 15 posts - 16 through 30 (of 71 total)