Viewing 15 posts - 15,586 through 15,600 (of 26,486 total)
Grant Fritchey (5/6/2010)
Steve Jones - Editor (5/6/2010)
GilaMonster (5/6/2010)
Grant Fritchey (5/6/2010)
May 6, 2010 at 11:38 am
IF 1 <> 0
BEGIN
Select @sql = 'Select * INTO #myTemp1 From TableA'
END
ELSE
BEGIN
Select @sql = 'Select * INTO #myTemp1 From TableB'
END
EXEC(@sql)
This runs but when I try to query #myTemp1 I get...
May 6, 2010 at 10:56 am
Adam.Massey (5/6/2010)
Had a problem come up that I have never seen and wanted to get some people's take on what I need to do...
The situation:
We have 3 servers that...
May 6, 2010 at 10:51 am
Try this:
with Search_cte as ( -- name the CTE appropriately
select
dbo.LEVENSHTEIN (USEARCH.firstname, ?) distance,
* -- should really specify the columns...
May 6, 2010 at 10:46 am
CirquedeSQLeil (5/6/2010)
Lynn Pettis (5/6/2010)
CirquedeSQLeil (5/6/2010)
Lynn Pettis (5/6/2010)
SureHappy
It's
Thursday
Friday would be better!
Monday next week even better, only day I will be at work!
The problem with that is you have to return to...
May 6, 2010 at 10:39 am
Came up with this waiting for clarification:
DECLARE @Table TABLE
(
id int,
...
May 6, 2010 at 10:36 am
CirquedeSQLeil (5/6/2010)
Lynn Pettis (5/6/2010)
SureHappy
It's
Thursday
Friday would be better!
Monday next week even better, only day I will be at work!
May 6, 2010 at 10:26 am
vijay.s (5/6/2010)
Kindly look into my problem
DECLARE @Table TABLE
(
id int,
ClientIdINT,
bnmk_dt DATETIME,
AmountINT
)
...
May 6, 2010 at 10:19 am
I have to agree. If you are not happy as a DBA, perhaps you should look at other areas such as development. SQL Server is such a large...
May 6, 2010 at 9:31 am
Grant Fritchey (5/6/2010)
Steve Jones - Editor (5/6/2010)
May 6, 2010 at 9:16 am
Steve Jones - Editor (5/6/2010)
Lynn Pettis 1533
CirquedeSQLeil ...
May 6, 2010 at 9:13 am
mckinnj1 (5/6/2010)
Lynn Pettis (5/5/2010)
Were you able to restore the database itself as under a differnet name using the .bak...
May 6, 2010 at 8:55 am
From your post:
Now i want something like this:
Year booked shipped
2008 300 null
2009 500 ...
May 6, 2010 at 7:37 am
Viewing 15 posts - 15,586 through 15,600 (of 26,486 total)