Viewing 15 posts - 5,341 through 5,355 (of 7,191 total)
I take it that the CompName column contains the name of the asset? If so, just remove the WHERE clause - you want to return data for all assets,...
May 31, 2011 at 3:44 am
stebennettsjb (5/27/2011)
May 27, 2011 at 8:57 am
I still don't think it'll help. BackupExec backups create backup files, so they'll appear in the backupset table. BACKUP LOG WITH TRUNCATE_ONLY doesn't create any files and so...
May 27, 2011 at 6:55 am
Ninja's_RGR'us (5/27/2011)
there's also the msdb backup history tables that might have a little more info (not sure about user tho).
There's a username column in the backupset table, but since the...
May 27, 2011 at 6:49 am
Try opening the default trace, which you'll find in the same folder as your errorlog files. If it's not in there, and you don't have anything set up to...
May 27, 2011 at 6:39 am
Ivan Mohapatra (5/26/2011)
what is unc ?
As Gail said, end of discussion on this thread.
May 26, 2011 at 4:46 am
Then that's your problem. As I said in an earlier post, if it's not on your SQL Server, you need to use a UNC.
John
May 26, 2011 at 4:35 am
I see what's happened here. You need to use the following construction:
INSERT INTO MyTable (Col1, Col2, Col3)
SELECT @var1, @var2, COALESCE(CAST(Value AS varchar(5)),'0')
FROM MyOtherTable
WHERE Name LIKE 'timezone'
AND BoardID = @BoardID
John
May 26, 2011 at 3:16 am
This is the last time I'm going to ask. Please provide full table DDL (including constraints) and sample data in the form of INSERT statements.
John
May 26, 2011 at 2:47 am
Table DDL and sample data as requested, please.
The query you have posted cannot return those results, since the ABS function always returns a positive number.
Also bear in mind that an...
May 26, 2011 at 2:29 am
It occurs because when you remove the decimal point from the number, you end up with a number that's too big for the int data type. You can cast...
May 25, 2011 at 10:15 am
You just need to take the SELECT CAST out of the ISNULL expression.
John
May 25, 2011 at 10:12 am
In that case, I don't know what's happening. But I would look for that procedure SyncFunctions and see what it's trying to do.
John
May 25, 2011 at 10:10 am
I take it this error occurs when you create the function, not when you access it? Since, according to the error message, the error occurred in SyncFunction, I think...
May 25, 2011 at 9:51 am
I take it you have BIDS on your desktop? If you search the internet for "creating a deployment manifest" you should find plenty of content on how to deploy...
May 25, 2011 at 8:22 am
Viewing 15 posts - 5,341 through 5,355 (of 7,191 total)