Viewing 15 posts - 121 through 135 (of 241 total)
Does this return the value of that parameter? Remember though just cause it has a parameter called dbname it doesn't mean thats the only db it accesses.
SELECT object_name, parameter_name, design_default_value,...
June 23, 2016 at 8:48 am
durga.palepu (6/23/2016)
But In latest version of SQL Server say SQL 2012 on wards, the SQL Agent Jobs info is directly saved into...
June 23, 2016 at 7:50 am
What size is the file? Compare it to the max file size when you run this command
EXEC msdb.dbo.sysmail_help_configure_sp ;
Does the user the SQL Services is running under have...
June 22, 2016 at 11:01 am
If you have 3 datasets embedded in your report and they each return 100 rows then the row count in the execution log should display 300. If the datasets are...
June 21, 2016 at 6:50 am
You can't have SSRS default to an exchange alias. It uses the alias against the AD account. Changing that setting to false opens up the to box to allow users...
June 20, 2016 at 2:14 pm
SELECT name FROM msdb..sysmail_profile
June 20, 2016 at 11:49 am
If you execute t-sql in a try catch block then you should notice no difference between this and executing the same T-sql outside of a try catch block.
The performance overhead...
June 20, 2016 at 9:54 am
Here is one way you could do it.
SELECT
j1.item_id
FROM #jec_item_sup j1
EXCEPT
SELECT j.item_id
FROM #jec_item_sup j
WHERE ...
June 17, 2016 at 11:28 am
Tools > Options > Text Editor and untick highlight current line.
June 17, 2016 at 7:00 am
To convert back do this
SELECT CONVERT(VARCHAR(MAX), CONVERT(VARBINARY(MAX), '0x53514C205365727665722043656E7472616C', 1))
The original query above can be inserted into a table no problem. I don't see anything good about that function. it...
June 16, 2016 at 7:18 am
In science they say - the shorter the title the deeper the book.
Your "simple question" is not really that simple.
Someone who knew that "simple answer on a simple question" put...
June 15, 2016 at 6:01 pm
You don't need to use that function. You can do it like this:
Select CONVERT(VARCHAR(MAX),CONVERT(VARBINARY(MAX),CAST(
'['+Table_Catalog+']'
+'['+Table_Schema+']'
+'['+Table_Name+']'
+'['+Column_Name+']'
+'['+CAST(ORDINAL_POSITION as varchar ) +']'
+'['+ISNULL(COLUMN_DEFAULT,'')+']'
+'['+ISNULL(IS_NULLABLE,'')+']'
+'['+ISNULL(DATA_TYPE,'')+']'
+'['+CAST( ISNULL(CHARACTER_MAXIMUM_LENGTH,0) as VARCHAR ) +']'
+'['+CAST( ISNULL(CHARACTER_OCTET_LENGTH,0) as VARCHAR ) +']'
+'['+CAST( ISNULL(NUMERIC_PRECISION,0) as...
June 15, 2016 at 5:52 pm
No the next transaction log backup won't be 332gb - it will be a lot smaller. Take another log backup and then try shrinking the log file again. If you...
June 15, 2016 at 5:01 pm
Have you set up the tnsnames.ora file on the SQL server and have you verified the information in the tnsnames is correct?
Are you sure the tnsnames is in the correct...
June 15, 2016 at 12:28 pm
Viewing 15 posts - 121 through 135 (of 241 total)