Viewing 15 posts - 226 through 240 (of 1,098 total)
Do you have any records in the chain table?
Does it have only a column named name?
You coud add prints inside the sp to know the values of variables.
March 26, 2004 at 7:52 am
What about
SELECT TOP 1 MIN(nativeid), FirstName, LastName
FROM Common
WHERE PArtnerID = 'ID'
GROUP BY FirstName, LastName
March 26, 2004 at 7:36 am
Did you try to fix the table?
Check DBCC CHECKTABLE in BOL. Try several times with REPAIR_REBUILD, because it may not work in the first time.
March 26, 2004 at 6:25 am
From BOL
Is the security context in which the query should be run. user is sysname. If user is not specified, the security context defaults to that of the user executing...
March 26, 2004 at 5:41 am
Also run sp_who2 from QA while waiting the restore screen in EM and check if there is a process blocking it.
March 26, 2004 at 5:30 am
Check xp_cmdshell in BOL.
A quick help:
EXEC master.dbo.xp_cmdshell 'DIR C:\*.*'
March 26, 2004 at 5:28 am
I have read somewhere that the backups devices shoudn't be more than the quantity of processor you have on your server.
I know that with multiple backup devices, you have multiple...
March 26, 2004 at 5:25 am
Did you try creating an alias in the client pc, from the Client Network Utility?
Specify the ip adress in the servername and in the alias the real name of the server.
March 25, 2004 at 1:49 pm
No. You will have to use EXEC ('sql'). Maybe something like this:
DECLARE @I INT,
@a AS VARCHAR(100),
@TableName AS SYSNAME
SELECT @I = 1
SELECT @TableNAme = CASE
WHEN @I = 1...
March 25, 2004 at 11:27 am
Not with stored procedures. Unfortanely, you will have to create manually the table. The columns doesn't have to have the same name as the recordset that the sp returns, but...
March 25, 2004 at 11:13 am
You can't use the Table data type in stored procedures.
March 25, 2004 at 9:09 am
But the stored procedures names should be the same. Do you have different versions of the stored procedures?
March 25, 2004 at 6:36 am
Cna give you the exact path, but I am sure that there is a script posted here.
March 24, 2004 at 1:03 pm
I agree that you don't need to create a table with data from your linked server, but like I thought that the problem was with that query, looked to...
March 24, 2004 at 12:22 pm
Viewing 15 posts - 226 through 240 (of 1,098 total)