Viewing 15 posts - 11,086 through 11,100 (of 13,459 total)
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...
Lowell
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...
Lowell
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...
Lowell
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.
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
May 14, 2009 at 5:26 pm
mcginn (5/14/2009)
Lowell
May 14, 2009 at 1:13 pm
it's still just a hyperlink...your computer resolves the path for you.
Some Excelfile on a web server with DNS
Some Excelfile on personal web server by name
Lowell
May 14, 2009 at 10:13 am
it's best to use the GUI in designer. you cannot actually insert between column...behind the scenes you have to create a new table with the newly designed "correct" structure complete...
Lowell
May 14, 2009 at 7:45 am
Create table #TempA ( Name Varchar(20), Age Int,Hobby Varchar(20),HobbyCode Int)
maybe I'm reading the requirements wrong, but if you want the current distinct combinations that exist in the table, would it...
Lowell
May 14, 2009 at 7:36 am
Viewing 15 posts - 11,086 through 11,100 (of 13,459 total)