Viewing 15 posts - 496 through 510 (of 597 total)
What is the error? Are you using OLE/DB or ODBC?
I assume that the userid you signed on with is a valid login for the server as well as having...
Francis
February 23, 2004 at 12:13 pm
The CD has a warranty. For replacement info see the last page in your book for instructions.
Francis
February 23, 2004 at 12:02 pm
When executing xp_sqlmaint there is a limited number of options to use. RebldIdx is the option to rebuild indexes. I don't think you can change it to execute INDEXDEFRAG rather...
Francis
February 23, 2004 at 9:01 am
You can use xp_sendmail to send mail that inclues the results of a query. ie:
Declare @sql nvarchar(200)
Declare @parmindex nvarchar(20)
Declare @sid varchar(3)
set @sid = 34
set @sql='select cast(Client as char(30)) from Clients...
Francis
February 20, 2004 at 2:56 pm
see http://vyaskn.tripod.com/watch_your_timeouts.htm for a timeout discussion. It may not help with ODBC connection butit may help with IIS.
Francis
February 20, 2004 at 9:21 am
I like #1, but I think the cube should be yellow because that has the most RAM. ![]()
Francis
February 20, 2004 at 7:37 am
Check out http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=6&messageid=99545#bm99584 for some opinions on this. Basically use WITH ENCRYPTION option when creating the stored procs or use some 3rd party tool like SQL Shield.
Francis
February 19, 2004 at 11:58 am
You can use the Export/Import Wizard (but this is really just DTS) SO if you don't want to do this then try either:
a. Backup you database (copy the backup file...
Francis
February 19, 2004 at 11:51 am
How about something like:
DECLARE @sql nvarchar(2000)
DECLARE @out integer
--loop through all tables in tablelist
DECLARE @objName VARCHAR(50)
SET @objName = ''
WHILE @objName IS NOT NULL
BEGIN
SELECT @objName = MIN( TableName )
FROM TableList
WHERE TableName > @objName
IF @objName IS NOT NULL
BEGIN
-- Insert...
Francis
February 19, 2004 at 11:39 am
I'm not sure what the 16 means- that column is marked as for internal use only. Did you try to drop the user using the sp_dropuser command? That table could be...
Francis
February 18, 2004 at 2:43 pm
If you have configured memory to be dynamic as opposed to fixed size, and you have checked off use all available processors; then you should have to do anything after...
Francis
February 18, 2004 at 2:40 pm
Have you looked at this script to see the approach used?
http://www.sqlservercentral.com/scripts/scriptdetails.asp?scriptid=594
Francis
February 18, 2004 at 9:29 am
ApexSQL Log also works very nicely for this.
Francis
February 18, 2004 at 9:16 am
The conversion to carbinary is important. The problem isn't a syntax one so much as you are cutting and pasting the output then reexecuting it. Passsords (and sometime other system...
Francis
February 17, 2004 at 11:35 am
Try CAST or CONVERT. For more info see http://www.sqlservercentral.com/columnists/sjones/castyourdata_printversion.asp
Francis
February 17, 2004 at 11:11 am
Viewing 15 posts - 496 through 510 (of 597 total)