Viewing 15 posts - 3,001 through 3,015 (of 6,401 total)
Please post new questions in a new topic.
But here you go
http://www.microsoft.com/sqlserver/en/us/editions/2012-editions/web.aspx
January 8, 2013 at 12:57 am
If using UNC path, then you need to ensure that the SQL service accounts have at-least read access to the network share to be able to access the file.
January 7, 2013 at 8:52 am
Are you using the UNC path or where you mapping a drive?
January 7, 2013 at 8:43 am
SSIS is not cluster aware.
http://msdn.microsoft.com/en-us/library/ms345193%28v=sql.105%29.aspx
January 7, 2013 at 8:39 am
Nope works out the box for me, no proxy account or anything needed as we are not behind a proxy.
Start a discussion on the codeplex site, someone might know how...
January 7, 2013 at 5:51 am
The geo data would be in a different API, so couldn't comment on that particular API, but the GA API using the codeplex solution works great, apart from the metrics...
January 7, 2013 at 2:38 am
We are using it to track statistics for our SaaS product, where we are developing a series of SSRS reports where the tennant can slice and dice the information as...
January 7, 2013 at 2:29 am
Not all metrics can be exported in 1 DFT, its trial and error, I started with 1 metric then added one in at a time until it wouldnt export then...
January 7, 2013 at 2:13 am
Create view requires CREATE VIEW permission in the database and ALTER permission on the schema in which the view is being created.
Also db_datareader will do for reading from all tables.
January 7, 2013 at 1:31 am
The object gets its collation from the database, so the database where you are declaring the table variable must be in a case sensitive collation.
January 7, 2013 at 1:23 am
The problem is with the ' in the casts
If you select out the @sql param you will see that it is
; WITH list_cte (table_name,field_name,fld_id,sql_value,field_value,exporttype) AS ...
January 4, 2013 at 8:31 am
bala.a (1/4/2013)
As you said, have you tried wrapping all the process in a transaction? I think, that is the usual and best way to utilize the maximum availability...
But even in...
January 4, 2013 at 8:18 am
SP_RENAME will be a good friend on this one.
Create the table again, but with a different name, eg table2.
Do all your processing, truncating etc in table2
Then rename table1 to...
January 4, 2013 at 7:51 am
Restoring the encryption keys will have probably caused it as the keys are out of sync.
Two ways to go it, find the correct encryption key file or delete all encrypted...
January 4, 2013 at 7:48 am
This should also do the same
SELECT
[P/O Header].AccRef,
RIGHT('0'+CONVERT(VARCHAR,Products.SPM),2) AS SPMNo,
RIGHT('0'+CONVERT(VARCHAR,DatePart(ww,[Due Date])),2) AS [WKNo],
[P/O Header].OrdNo
FROM
[P/O Header]
INNER JOIN
[P/O Details]
ON
[P/O Header].OrdNo = [P/O Details].OrdNo
INNER JOIN
Products
ON
[P/O Details].StockCode...
January 4, 2013 at 6:29 am
Viewing 15 posts - 3,001 through 3,015 (of 6,401 total)