Viewing 15 posts - 1 through 15 (of 29 total)
That is exactly what I was asking in the first post. 🙂
So, instead of running this statement to import the .ispac file:
Set @ProjectBinary = (SELECT * FROM OPENROWSET(BULK 'MyProj.ispac', SINGLE_BLOB)...
September 29, 2015 at 3:53 am
We do not have to get any data to & from this server. It's an isolated environment. It's an ETL package which will transport data from a transaction to a...
September 29, 2015 at 2:31 am
For those interested, we've managed to solve our problem. 🙂
To explain the scenario in detail...
Server A pulls data from Server B via linked server.
Server A upgraded to SQL 2014. Compatibility...
April 22, 2015 at 5:03 am
Oh yes! 🙂
The recompile of the objects sorted that out.
April 17, 2015 at 4:23 am
I agree with that.
Two problems though...
1. It's a VIRTUAL environment which assigns IPs dynamically. We use this for development & not for production.
2. I'm not in control of this environment.
July 3, 2013 at 5:10 am
Forgive me for being simple... LOL! Had to read the question a couple of times, but, isn't it easier just to do the following? Or did I miss the question...
September 28, 2009 at 3:01 pm
Also make sure that you have no other Beta or CTP versions of SQL 2005 installed on the laptop... That includes the .Net 2.0 framework as well.
July 31, 2008 at 12:51 am
Yes, when I substitute the @Batch variable with a static amount, the delete flies. But, hardcoding values also has it's dark side. Maintaining a code base which archives over 500...
June 13, 2008 at 8:55 am
Well, the table I'm deleting from currently contains +-150 million records... Every archive cycle extracts anything from 1 to 35000 records at a time (2000 in a batch). The archive...
June 13, 2008 at 5:46 am
I have been using this constraint on one of my tables & no issues...
ALTER TABLE [dbo].[TableName]
WITH CHECK ADD
CONSTRAINT [EmailValidator]
CHECK
(
CHARINDEX(' ',LTRIM(RTRIM([ColumnName]))) = 0 -- No embedded spaces
AND LEFT(LTRIM([ColumnName]),1)...
June 12, 2008 at 8:06 am
The caller must have some permission on the key, and must not have been denied VIEW permission on the key. Additional requirements vary, depending on the decryption mechanism:
DECRYPTION BY CERTIFICATE:...
June 12, 2008 at 7:25 am
Hi there,
I have the same issue... Only I'm trying to automate the backup of the encryption key, but how to force the backup without having to type in the confirmation??
Can't...
November 15, 2006 at 1:42 am
Hi there,
I run this SP on our production servers... Create the SP in your master database & just specify the dbname you want to re-index.
ALTER PROCEDURE [dbo].[p_ReIndexing] (
@dbname varchar(50)
)
AS
SET NOCOUNT...
August 28, 2006 at 2:35 am
Give or take a GB or two, Red-Gate SQLBackup gives us about the same figures...
Does SQLSafe allow you to restore single objects as to the whole database? I know SQL...
May 10, 2006 at 8:43 am
Viewing 15 posts - 1 through 15 (of 29 total)