Viewing 15 posts - 1,411 through 1,425 (of 9,641 total)
There's nothing that jumps out at me as incorrect with the syntax of the expression. The only thing I'd wonder about is what happens when Fields!clockStart.Value is NULL. ...
May 15, 2013 at 6:48 am
Can you successfully run a SELECT query against the linked server?
What does sp_testlinkedserver do?
May 15, 2013 at 6:42 am
In my opinion, SQL will never go away. ORM tools like Entity Framework, Linq, Hibernate/nHiberante, are getting better but in every case I've seen thus far you still get...
May 15, 2013 at 6:40 am
I believe you need to make sure you are use the 32-bit DTEXEC. Check out this article about 2/3 of the way down.
May 15, 2013 at 6:37 am
Are all the reports deploying to the same folder on the report server?
It isn't clear, at least not to me, if this is an initial deploy or if you are...
May 15, 2013 at 6:32 am
That code is a series of CTEs (Common Table Expressions) that create a virtual numbers table.
CTE's require the previous statement to be terminated by a semi-colon (;) and because this...
May 15, 2013 at 6:26 am
The only way to fix this in the SP is to check the value of the column you care about and not include that column in the update if it...
May 14, 2013 at 2:42 pm
I believe that you are talking about Intellisense. You can turn it on globally in SSMS by going to Tools -> Options -> Text Editor -> Transact-SQL -> Intellisense
May 14, 2013 at 2:36 pm
Sapen,
What do you want to happen if there is a batch/multi-row insert and some of the rows should be inserted but some should not?
May 14, 2013 at 2:31 pm
Sean Lange (5/14/2013)
Sapen (5/14/2013)
Sean Lange (5/14/2013)
May 14, 2013 at 1:43 pm
Sean Lange (5/14/2013)
May 14, 2013 at 1:41 pm
Are the columns NVARCHAR or NCHAR data types?
May 14, 2013 at 1:34 pm
Have you created the DSN on the report server?
Does the report server have the Sybase ODBC driver?
May 14, 2013 at 12:52 pm
Sounds like parameter sniffing and in this case it might be what Grant Fritchey calls bad parameter sniffing.
In the plan with the parameters right-click on the Update operator and select...
May 14, 2013 at 12:49 pm
What is the language on the SQL Server?
What is the locale on the report server and on your computer?
I've never seen this, but it does sound like the query isn't...
May 14, 2013 at 12:23 pm
Viewing 15 posts - 1,411 through 1,425 (of 9,641 total)