Viewing 15 posts - 991 through 1,005 (of 5,394 total)
November 5, 2014 at 8:54 am
You can upload the reports using the report manager web application.
However, that needs uploading the reports one at a time.
November 5, 2014 at 6:58 am
Don't use triggers to restrict allowed data in a table. Use CHECK constraints instead.
If you insist using a trigger, use ROLLBACK to prevent the changes to the destination table. RAISERROR...
November 5, 2014 at 4:36 am
I suppose you're thinking of the sqlcmd utility.
It doesn't come with the native client installation.
It is installed with the client tools and with the database engine setup.
You can also dowload...
November 5, 2014 at 3:34 am
If you already managed to pass a whole datatable to a stored procedure, I guess you are using a Table-Valued Parameter.
Simply insert from the TVP to the destination table:
INSERT INTO...
November 4, 2014 at 10:44 am
Here's an example:
public void WriteDataTable(
String ServerInstance,
String Database,
...
November 4, 2014 at 7:55 am
The time portion of a datetime can be saved in a column of datatype "time".
The data is always saved in the internal representation, which is not 24 hours nor 12...
November 4, 2014 at 2:11 am
tcronin 95651 (11/3/2014)
Is there any way that the second index is not irrelevant?
Queries that search for a particular transaction_id AND transtype AND transdate can take advantage from this index....
November 3, 2014 at 9:54 am
Take a look at these validation functions: http://www.sqlservercentral.com/blogs/pearlknows/2011/04/05/sql-validation-functions-cool-udf-s-to-have-handy/
November 3, 2014 at 8:57 am
I'm wondering why he wants to certify on a subject that he clearly doesn't master.
However I feel his pain: how is anybody without system/network administration skills supposed to understand how...
November 3, 2014 at 7:32 am
Open the maintenance plan and select the cleanup task.
In the properties window you should see the "Timeout" property. How is it set?
November 3, 2014 at 7:25 am
Can you please share the error message?
November 3, 2014 at 7:03 am
Now he's trying to set up a virtual lab environment and getting sysprep errors...
November 3, 2014 at 7:02 am
...Timeout expired...
Looks like you have a timeout set to something other than 0 on your cleanup task in the maintenance plan. Can you confirm?
November 3, 2014 at 6:58 am
Narayana_17 (11/3/2014)
I have read the post, but just wondering the pros and cons of deleting the data in Sysmail tables using the scripts.
The scripts deletes old mail messages sent using...
November 3, 2014 at 4:55 am
Viewing 15 posts - 991 through 1,005 (of 5,394 total)