Viewing 15 posts - 13,276 through 13,290 (of 26,486 total)
MyDoggieJessie (4/2/2012)
April 2, 2012 at 1:08 pm
Grant Fritchey (4/2/2012)
Lynn Pettis (4/2/2012)
MyDoggieJessie (4/2/2012)
Lian (4/2/2012)
Hi,we are running SQL Server 2005 Enterprise Edition 64 bit
I'd like to hear your suggestion anyway Lynn!
In SQL Server 2008 and newer when running...
April 2, 2012 at 12:37 pm
MyDoggieJessie (4/2/2012)
Lian (4/2/2012)
Hi,we are running SQL Server 2005 Enterprise Edition 64 bit
I'd like to hear your suggestion anyway Lynn!
In SQL Server 2008 and newer when running Enterprise Edition, I would...
April 2, 2012 at 10:58 am
sunny.tjk (4/2/2012)
April 2, 2012 at 10:51 am
Rod at work (4/2/2012)
tom.wauters (4/2/2012)
First of all, your databases will be in the newer environment, which has lots of improvements compared...
April 2, 2012 at 10:48 am
Okay, nevermind what I was thinking. You posted this in a SQL Server 2008 forum so I was going to make a SQL Server 2008 suggestion.
Edit: And I...
April 2, 2012 at 10:41 am
luissantos (4/2/2012)
I see a TSQL script to make UPDATE on large table :
select
'update fl set radicaltipoemp='+convert(varchar,'1')+' from fl where fl.flstamp='''+fl.flstamp+''''
from fl (nolock)
where fl.radicaltipoemp = 0
i think that the...
April 2, 2012 at 10:39 am
Oracle <> SQL Server
Best way to put that one. Also, currently in Oracle an empty string ('') is treated as null while in SQL Server it is not.
April 2, 2012 at 10:36 am
What edition of SQL Server 2008 are you running?
April 2, 2012 at 10:33 am
A primary key can not have a null value. However, for a unique constraint, a single null value is unique. This is why a single null is allowed....
April 2, 2012 at 10:30 am
Glad to help.
And no, there is no button to mark the thread as answered. The thread will stay open and others may come along and offer other suggestions or...
April 2, 2012 at 10:27 am
Conficker (4/2/2012)
DECLARE @Day INTSET @Day = datePart(dd,getDate())
DECLARE @i INT
SET @i = 0
CREATE TABLE #temp1
(para VARCHAR(50))
WHILE (@i<20)
BEGIN
IF @DAY < 21
BEGIN
INSERT INTO #temp1
SELECTCONVERT(VARCHAR(25),((dateAdd(mm,-(@i+0),getDate() ) - datePart(d,getDate()))+21),103)+
' - '+
CONVERT(VARCHAR(25),((dateAdd(mm,-(@i+1),getDate() ) - datePart(d,getDate()))+20),103)
END
ELSE...
April 2, 2012 at 9:56 am
vsql (4/2/2012)
I am planning to write the MSBI certification please sujjest me some good source of material,...
April 2, 2012 at 9:47 am
I'd want more information from the vendor on why the advise against the SQL Native client.
April 2, 2012 at 9:41 am
For a SQL based solution, you can try this, but please note that it won't work for billing dates that start on the 29th, 30th, or 31st of the month.
declare...
April 2, 2012 at 9:34 am
Viewing 15 posts - 13,276 through 13,290 (of 26,486 total)