Viewing 15 posts - 11,086 through 11,100 (of 13,462 total)
Florian Reischl (5/17/2009)
Put this code above your URL-split:
ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
I say it all...
May 17, 2009 at 12:59 pm
change the cd.* to a list of the actual columns desired.
your status, I'm assuming is just one more field based on a case statement; you were not explicit on the...
May 17, 2009 at 12:43 pm
it's the * for the column list.
there's no problem running that statement all by itself, but if ytry to create a VIEW of it, you'll have problems because the emp_id...
May 17, 2009 at 12:18 pm
here's some consumable data to help look at the problem.
i think in your example you said one column was c_date, but int he SQL you referenced clocking_date; i added both...
May 17, 2009 at 6:08 am
then it is probably owned by a different schema than dbo, and needs to be identified by that.
what is the real, exact error message?
maybe if you have a user named...
May 15, 2009 at 10:30 pm
if it literally says 'table name' , with a space, you'll need to wrap any name with spaces in double quotes or brackets:
SELECT * from [My Table Name] WHERE [First...
May 15, 2009 at 9:51 pm
i tried creating a brand new post, and immediately deleting it.
http://www.sqlservercentral.com/Forums/Topic718433-433-1.aspx
i was unable to delete it.
May 15, 2009 at 9:34 pm
i think if you create a brand new post, you can delete it , but if it's a reply to a post, instant-notification emails might have foreign keys to your...
May 15, 2009 at 1:03 pm
more details from you before anyone can help; it's all specific to YOUR network.
what is the address of yout SSRS server? are you connecting to a .com address or a...
May 15, 2009 at 10:06 am
you can also establish a regualr ADODB connection and connect to the server, without having any SQL client tools installed. there are a lot sample apss that can do that...
May 15, 2009 at 7:25 am
you'll need to handle errors a s a separate email, something like this:
DECLARE @Results int
EXEC @Results = msdb.dbo.sp_send_dbmail
@profile_name = 'AdventureWorks Administrator',
@recipients = 'danw@Adventure-Works.com',
@body='Whatever the...
May 15, 2009 at 5:53 am
this was about the only thing that made sense to me;
SELECT
ID,
[month],
[year],
CASE
WHEN month(getdate()) IN...
May 14, 2009 at 8:36 pm
this is actually a question for Network Solutions...if they expose their SQL Server to allow you to connect directly, then yes.
If it is hidden behind a firewall, then no.
I have...
May 14, 2009 at 7:44 pm
the secret is to join the table against a copy of itself.
this example is most of the way there...the only problem is that it returns more than one row.
that can...
May 14, 2009 at 5:26 pm
mcginn (5/14/2009)
May 14, 2009 at 1:13 pm
Viewing 15 posts - 11,086 through 11,100 (of 13,462 total)