Viewing 15 posts - 2,071 through 2,085 (of 13,462 total)
not finding data does not sound like an "error" to me in this case, so raiserror is probably no what you really want.
i think you just want to send an...
January 28, 2015 at 10:02 am
Siberian Khatru (1/28/2015)
GilaMonster (1/28/2015)
Should be in the default trace, but that's only 5 files of 20MB, it gets overwritten quickly.
Pardon my ignorance (I'm still learning) but what is the "default...
January 28, 2015 at 9:27 am
krypto69 (1/28/2015)
Thanks Lowell That worked perfectly.Just curious why must that be converted to varchar?
it's the datatype.
by definition decimals or floats are represented by at least once digit left of it's...
January 28, 2015 at 9:16 am
the issue is scope: the use statmetn is valid only for the contents of the EXEC command.
ALL the statements have to be in the full exec command; once it finishes,...
January 28, 2015 at 7:58 am
you'd have to convert to varchar, are you sure that's what you want?
ACTLABCOST = case
...
January 28, 2015 at 7:52 am
isn't there an implied extra join(Cross join?) , because you aliased the table?
--because you aliased the table as p, isn't this an implied extra table gets auto joined?
UPDATE dbo.ProductsL1
SET...
January 27, 2015 at 10:50 am
Lynn Hendricks (1/27/2015)
anywho... I am getting...
January 27, 2015 at 10:21 am
first a redesign; there is no reason to put this in a trigger. if the trigger fails, your data disappears because the transaction gets rolled back.
the second issue is permissions:...
January 27, 2015 at 9:44 am
i guess i was expecting to see a different driver, and it should be the one that is specific to firebird, and not the microsoft driver:

January 26, 2015 at 7:48 am
darn i missed the link too!, here it is expanded out instead of aliased:
Phil Parkin (1/26/2015)
sm_iransoftware (1/26/2015)
Then what is the best way to get Unused indexes?
A brief search suggested...
January 26, 2015 at 7:00 am
you say you installed the firebird odbc, but the error message clearly says you are using MSDASQL and not LCBI.IBProvider.3, so offhand, i'd say you should script your linked server...
January 26, 2015 at 6:57 am
if the two servers are on the same network, you could use a linked server and 4 part naming conventions to pull the data; easily the fastest way, assuming the...
January 22, 2015 at 3:36 pm
yes you can.
export the encryption key from your existing SSRS service, and then restore the encryption key on the new one.

backup both the ReportServer and ReportServerTempDb databases, and resotre then...
January 21, 2015 at 12:37 pm
as long as you due your due diligence, and check to make sure you won't have any data conversion errors, you'd be ok;
here's a quick example: if you radaptation of...
January 21, 2015 at 11:47 am
remove the GO statements.
GO statments are not a SQL command, but instead something that SQL Server Management Studio uses to split batches.
also, i'd recommend bullet proofing your code like this...
January 21, 2015 at 11:10 am
Viewing 15 posts - 2,071 through 2,085 (of 13,462 total)