Viewing 15 posts - 6,946 through 6,960 (of 7,168 total)
As an aside, if you need help with SQL 2005 it's best to post in the SQL 2005 Forums otherwise you may get 2008-specific responses.
For you particular issue, and this...
March 13, 2011 at 9:45 am
Not ideal but I can work with that for DDL...can you please provide some test data?
Please have a look a this article: http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
March 11, 2011 at 3:50 pm
I would like to help...kindly post the DDL for your tables and DML to generate some useful test data.
March 11, 2011 at 3:18 pm
Please post DDL and some DML to create test data for your tables:
asap_email_listTrain
TRAIN..SALES.DEL
TRAIN..MISC.ZIP2ZONE
http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
March 11, 2011 at 2:11 pm
It will depend on the output of the sig pad so the answer will be specific to the hardware and software provided by the vendor...I suggest you work with them.
One...
March 11, 2011 at 1:25 pm
Mapping a Data Reader Source to an OLE DB Destination will give you the option to create the table in the destination...however other than column names and data types nothing...
March 11, 2011 at 11:48 am
Did you look at the Event Log? Please post the details of your findings so we may help you arrive at a solution.
March 11, 2011 at 11:33 am
Lionel E. Nzenze (3/11/2011)
So not send mail from a trigger.
Get the Trigger to write Whatever you want into some table.
Create a SQL Server Job to poll the said table...
March 11, 2011 at 9:20 am
Try this:
SELECT ...,
REPLACE(CONVERT(CHAR(10), CONVERT(DATETIME, [column_name]), 101), '/', '-') + ' ' + CONVERT(CHAR(12), CONVERT(DATETIME, [column_name]), 114) AS my_new_date,
...
FROM [some_table];
Edit: missed the replace, thanks bitbucket
March 10, 2011 at 4:39 pm
You can do this with sc.exe:
C:\>sc qc SERVICE_NAME
March 10, 2011 at 4:14 pm
nico van niekerk (7/15/2008)
March 10, 2011 at 2:31 pm
It can be done using a couple Windows Batch commands to accept the user's input into StdIn and by calling sqlcmd.exe to execute the SQL. I woudl recommend putting your...
March 10, 2011 at 12:28 pm
Redesign your data model 🙂
Just kidding (not really)...boolean in SQL Server is implemented as the BIT data type where 0 = false. As an aside, NULLable bits are allowed too...
March 10, 2011 at 12:15 pm
Anything with a Severity <= 10 will be treated as "informational" and will not affect batch execution (i.e. will not set @@error). It will however cause data to be sent...
March 10, 2011 at 12:10 pm
Viewing 15 posts - 6,946 through 6,960 (of 7,168 total)