Viewing 15 posts - 6,631 through 6,645 (of 7,472 total)
search this site for "reporting service" and you'll find enough to start with
April 6, 2005 at 5:43 am
my 2ct (not knowing the exact buisiness rrule)
select case when day(getdate()) > 14 then
DATEADD(d, -1, DATEADD(m, 1 + DATEDIFF(m, 0, getdate()), 0))
else
convert(datetime,cast(year(getdate()) as char(4)) + '-' + cast(month(dateadd(m,1,getdate())) as char(2))...
April 6, 2005 at 1:27 am
"server=localhot;uid=sa;pwd=;database=Northwind"
I guess you want to connect local.
Try server=.
or server=localhoSt
btw : even on dev/test server it is not wize to have sa-password...
April 6, 2005 at 1:07 am
- first check out who or what is blocking and consuming.
( maybe http://www.sqlservercentral.com/scripts/contributions/111.asp can help)
- Is it just a job or was it a maintenance plan you've deleted ?
April 5, 2005 at 5:00 am
First : start you sp with set nocount on (unless you realy need the rows info)
Why aren't you using a transaction ?
April 1, 2005 at 7:23 am
- view-triggers only fire when the view is being used !
- you could place triggers on the underlying objects
April 1, 2005 at 7:17 am
Never mind !
I found out that I had to merge the cells over the needed span.
April 1, 2005 at 4:14 am
just my 2ct
we always have a clustered index (even if on a identity or current-datetime column if no other suggested by the development team...
March 30, 2005 at 12:19 am
If I'm correct ...
if you want to be sure it is being run wit isolation level x, you can set the isolation level (at the beginning) in your sp...
March 25, 2005 at 12:37 am
U2U will provide you a good basic knowlage.
One first has to lean to crawl, walk and then start running.
Flexcom-azlan (azlan.be) also does a good job.
Compare prices and jump onto promotions....
March 25, 2005 at 12:16 am
also in that case you can use profiler to generate the script so you can capture all sql to a file.
Start profiler, create a trace and then save it as...
March 24, 2005 at 6:26 am
Can you do a repro ?
if yes, use Query Analyser to debug the proc and set brakepoints to these positions so you can check the content of all varriables and...
March 22, 2005 at 1:45 am
just my 2ct :
- having NULLs for replacement - values ?
- or using case-expressions without an ELSE pitfall ?
March 22, 2005 at 12:11 am
like andrewkane17 specified, shrinkfile or shrinkdatabase will solve your problem.
You can also perform an alter database set AUTO_SHRINK on, but that is not...
March 22, 2005 at 12:08 am
Viewing 15 posts - 6,631 through 6,645 (of 7,472 total)