Viewing 15 posts - 7,471 through 7,485 (of 26,490 total)
Would help to see what you need done, not just a description. I know I am visual person when it comes to problem solving.
May 29, 2013 at 11:59 am
sturner (5/29/2013)
May 29, 2013 at 11:06 am
Something seems amiss to me here. Is there other things going on in the stored procedure besides this one query?
May 29, 2013 at 10:58 am
Eugene Elutin (5/29/2013)
...
Took a quick look at it, don't like it as it uses the INFORMATION_SCHEMA views. The MS SQL system views provide much more information that is valuable...
May 29, 2013 at 10:55 am
CheeseheadDBA (5/29/2013)
May 29, 2013 at 10:47 am
Lowell (5/29/2013)
a couple of procedure sp_GetDDL and sp_getDDLa which scripts any...
May 29, 2013 at 10:28 am
Eugene Elutin (5/29/2013)
...
Any nice ways to make a empty copy of a table including indexes ?
...
There is one I know.
Develop your own utility to do so.
Here is the link...
May 29, 2013 at 10:24 am
CheeseheadDBA (5/29/2013)
May 29, 2013 at 9:56 am
CheeseheadDBA (5/29/2013)
I have a question I hope the community can help me with. I have a query that is running against a legacy system. I think I...
May 29, 2013 at 9:47 am
May I suggest reading this article: http://www.sqlservercentral.com/articles/Advanced+Querying/calculatingworkdays/1660/
May 29, 2013 at 9:37 am
How about this:
IF OBJECT_ID('tempdb..#tmp') IS NOT NULL
DROP TABLE #tmp;
CREATE TABLE #tmp (val varchar(10) primary key)
GO
INSERT INTO #tmp
SELECT '5'UNION ALL
SELECT '6DN'UNION ALL
SELECT '7'UNION ALL
SELECT '10'UNION ALL
SELECT '11DN'UNION ALL
SELECT '12'UNION ALL
SELECT '13'UNION...
May 29, 2013 at 9:31 am
arooj300 (5/29/2013)
Hi lynn,when they are updating or selecting any data that time the performance will be slow.
Thanks
Define slow.
May 29, 2013 at 8:32 am
arooj300 (5/29/2013)
My database is working fine, but application is getting slow. According to the client,If they login with one or two user application is fast. If all the user login...
May 29, 2013 at 8:21 am
Can you post the requirements of what you are trying to accomplish? I sort of understand that you want to make a copy of the table and all of...
May 29, 2013 at 8:03 am
durai nagarajan (5/28/2013)
I changed it to a service account it is fine now but you have to run...
May 28, 2013 at 10:22 pm
Viewing 15 posts - 7,471 through 7,485 (of 26,490 total)