Viewing 15 posts - 31 through 45 (of 54 total)
One option is to include a field of spatial type Geography and insert into it a polygon of the geographic area. Review the Spatial data types in BOL for...
April 19, 2013 at 10:57 am
The execution plan is probably dropping from the procedure cache based on factors referenced in this link.
February 6, 2013 at 10:52 am
From BOL:
You can reduce the default size of an empty file by using DBCC SHRINKFILE target_size. For example, if you create a 5-MB file and then shrink the file to...
December 27, 2012 at 5:47 pm
Thanks for your help. I think I will call this post resolved, I think the question would make a good book.
July 21, 2010 at 4:04 pm
Thanks, but they have to use the dbo.
In a past life I had the report procs in a separate database and used the rpt schema, but that won't...
July 21, 2010 at 2:38 pm
To answer my own question, a ddl trigger based on object type might do the trick.
July 21, 2010 at 2:19 pm
Great script! I don't see synonyms, can that be added, and the "object level perms for users tied to database roles I had created" from above?
May 10, 2010 at 12:43 pm
I like the story, its a good example of how we SQL junkies get it done.
I would have refused the work. Almost every time I have had to crank...
March 17, 2010 at 10:40 am
This is just a stab in the dark, but if it helps . . .
AND (T_EQUIPMENT_LOG_DATA.READ_DATE BETWEEN '1/6/2010' AND '1/14/2010')
becomes (if the datatype on the table is a datetime)
AND (T_EQUIPMENT_LOG_DATA.READ_DATE...
January 13, 2010 at 4:27 pm
update m
set m.orderid = m2.orderid
from dbo.main m
inner join dbo.main2 m2
on m.listid = m2.listid
January 13, 2010 at 4:16 pm
Would you be willing to share your SSIS template? That could really help the push for SSIS in my space.
Thanks
June 9, 2009 at 3:52 pm
"I have a stored proc on my system which allows me to enter a number and it returns a list of related numbers"
Can you convert that into a function?
April 9, 2009 at 10:22 am
I will look at a way of logging the time per file. Looking at the network is an excellent idea.
The source for these files is numerous polling servers, these...
April 9, 2009 at 9:14 am
Thanks for your replies.
Zipping at the source is not an option.
Breaking out the files into separate streams is probably the best option, it is a natural way to create more...
April 8, 2009 at 11:01 am
Viewing 15 posts - 31 through 45 (of 54 total)