Viewing 15 posts - 4,261 through 4,275 (of 9,643 total)
The nice thing about the OUTPUT clause it that it doesn't require a trigger. A way to do what you are asking would be something like this:
DECLARE @orders TABLE...
September 8, 2009 at 9:50 am
If you have proper indexes performance should not be an issue because of joining tables. You need to determine how you are going to handle NULL or empty parameters...
September 8, 2009 at 9:13 am
A couple of options. Run sp_who2 to see if your insert is being blocked. You can also run Profiler to check for Blocking/Deadlocks or you can enable the...
September 8, 2009 at 9:09 am
You want to use the Data Conversion task.
September 8, 2009 at 9:04 am
I'd recommend moving the Express DB to the Standard edition server. You not only want to be able to schedule backups, but other maintenance tasks as well like DBCC...
September 8, 2009 at 9:01 am
Darn it Jeff, I know I have seen that solution somewhere before, don't know if it was by you or not, but I wish I would have remembered it.:-D
September 8, 2009 at 8:26 am
Just read in Grant's book, Chapter 8, that:
To limit contention with the operating system, I will usually set the max degree of parallelism setting to one less than the number...
September 5, 2009 at 9:21 am
Jan Van der Eecken (9/4/2009)
GilaMonster (9/4/2009)
Jan Van der Eecken (9/4/2009)
September 4, 2009 at 4:59 pm
I got something working, but the question about -Filter and -Exclude still remains.
Thanks guys. Even Grant who hijacked the thread. Which is fine. Might as well...
September 4, 2009 at 12:46 pm
Now to get back to my problem.
Okay, I think I may have identified my problem. I am attempting to archive Default Trace files and I was using this command:
Get-ChildItem...
September 4, 2009 at 12:42 pm
I'm not sure what you want. I don't see any double spaces in the string you included. You may need to check for Tabs (Char(9)), Line Feeds (Char(10)),...
September 4, 2009 at 8:41 am
Is the distributor on the same server or another one?
September 4, 2009 at 8:16 am
Where and how are you setting @dbname? It sounds like you have issue there.
September 4, 2009 at 8:14 am
Viewing 15 posts - 4,261 through 4,275 (of 9,643 total)