Viewing 15 posts - 91 through 105 (of 184 total)
yes - once deployed, the report is deployed with the defaults you specify the first time.
If you delete the report and re-deploy with the new defaults you should find all...
July 18, 2011 at 7:21 am
This URL may help in making the decision: http://databases.about.com/od/sqlserver/a/mssql_editions.htm
July 15, 2011 at 2:39 am
It might be "overkill" for your scenario but if you use projects to store your .sql files, you can specify the connection in the solution.
You could then have separate solutions...
July 6, 2011 at 8:50 am
The problem is the colour "Dark Blue" - it does not exist.
However "DarkBlue" does!
:w00t:
July 5, 2011 at 7:52 am
gsc_dba (6/27/2011)
USE [AdventureWorks]
DECLARE @tableHTML NVARCHAR(MAX) ;
DECLARE @varCheck BIT
IF EXISTS ( SELECT *
...
June 30, 2011 at 3:44 am
Oh and if you double click the .ssmssln file it opens SSMS and all the associated queries...
😀
June 28, 2011 at 9:16 am
This may help
http://msdn.microsoft.com/en-us/library/ms187953.aspx
The scope of a variable is the range of Transact-SQL statements that can reference the variable. The scope of a variable lasts from the point it is declared...
June 28, 2011 at 8:44 am
I find it useful to store all queries and connections for an upgrade coupled with source control
June 28, 2011 at 8:26 am
How/what did you name your instances...?
For example the default is MSSQLSERVER (i think!) - I named my instances after the version, so MSSQL2008R2, MSSQLDENALI, etc
Then in SSMS when choosing your...
June 27, 2011 at 9:42 am
Edit: As mentioned above - need a little more info to be able to help...
Can you elaborate on the table structures?
June 27, 2011 at 9:19 am
I think Dannol Liu somes it up quite well...
Edit - seems the link is forbidden so here is the content of his response:
As you might know that the collation decides...
June 27, 2011 at 9:07 am
Try the ISNULL function:
DECLARE @nullablecolumn INT = NULL
SELECT ISNULL(@nullablecolumn, 0)
June 27, 2011 at 8:52 am
Your welcome
🙂
June 27, 2011 at 8:43 am
You could also circumvent the @varCheck by setting the @tableHTML = your result set when exists = true
And set @tableHTML to be your "No data available..." when exists =...
June 27, 2011 at 3:12 am
Try this - uncomment the exec mail for each for testing...
USE [AdventureWorks]
DECLARE @tableHTML NVARCHAR(MAX) ;
DECLARE @varCheck BIT
IF EXISTS ( SELECT *
...
June 27, 2011 at 3:04 am
Viewing 15 posts - 91 through 105 (of 184 total)