Viewing 15 posts - 136 through 150 (of 241 total)
What does running this query return
select log_reuse_wait_desc from sys.databases where name = 'YourDbName
June 15, 2016 at 12:21 pm
If you want to be able to restore to a point in time then you need to backup the entire log. If doing this will cause an issue - lack...
June 15, 2016 at 8:51 am
sqlfriends (6/14/2016)
Then what is that output file on the advanced tab?
Also I guess the...
June 14, 2016 at 1:03 pm
SSRS is part SQL so if you have a licensed SQL instance already then you are licensed to use SSRS. The exception would be if you wanted to have SSRS...
June 14, 2016 at 11:36 am
The query below will give you the field names in a column and the data type in a separate column.
WITH
XMLNAMESPACES
(
DEFAULT
'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition',
'http://schemas.microsoft.com/SQLServer/reporting/reportdesigner'
AS RepDef
)
SELECT
...
June 14, 2016 at 11:14 am
Sounds like permissions. sp_testlinkedserver only tests the connection it doesn't check any permissions. I don't know what you mean by alien in this context.
What error do you get then you...
June 13, 2016 at 10:40 am
SELECT *
INTO #Table
FROM ( SELECT 'New Dmark' AS sitename
...
June 13, 2016 at 6:47 am
SELECT @@VERSION
will give you the SQL version
if it is express there is a 10GB limit per database
June 7, 2016 at 1:59 pm
What version of SQL are you using? Express?
If you aren't using express do you have space on the hard drive in order to increase the size of the database? If...
June 7, 2016 at 1:51 pm
Just replace VARCHAR2 with varchar, but why are you going to all that trouble? Just use a date datatype.
If you have a date of 03/04/2016 is that the 3rd April...
June 7, 2016 at 1:46 pm
Your tab delimited script does that. You may want to change the file extension to be csv instead of xls to stop excel from complaining but it will put the...
June 7, 2016 at 11:51 am
What sort of file do you want? A csv file or a tab delimited file? As you mention csv but the script you are posted is using tab as the...
June 7, 2016 at 11:37 am
Are you using SSMS remotely? Try launching SSMS on the server and running the package from here. If it works then see the url below.
June 7, 2016 at 10:44 am
sqlkohai (6/7/2016)
June 7, 2016 at 10:15 am
How are you running the package on the server - through SQL Agent or executing via management studio? Are they deployed into the Integration Catalog (project deployment method) or are...
June 7, 2016 at 10:05 am
Viewing 15 posts - 136 through 150 (of 241 total)