Viewing 15 posts - 5,326 through 5,340 (of 8,753 total)
crookj (5/11/2015)
Ed Wagner (5/11/2015)
SQLRNNR (5/11/2015)
roseName
Alias
Ambiguity
May 11, 2015 at 12:18 pm
Jeff Moden (5/10/2015)
May 10, 2015 at 3:05 pm
GilaMonster (5/10/2015)
That said, I'm not sure why one would CREATE ... WITH DROP_EXISTING a clustered index without intending to change keys, sort order or the like.
Most common use I see...
May 10, 2015 at 3:05 pm
GilaMonster (5/10/2015)
Eirikur Eiriksson (5/10/2015)
Ken Davis (5/9/2015)
May 10, 2015 at 2:54 pm
zogher (5/9/2015)
mister.magoo (5/9/2015)
If the real situation is more complex, then please let us know.
Hi,
Thanks for the reply.
Couple of things to note (yes, my example is rather simplified), I will try...
May 10, 2015 at 1:06 pm
rkrpat (5/10/2015)
We are working in a Merge replication environment where we have SQL Server 2005, 11 publications and 2 subscribers.
We used to get lot of incidents from the Application...
May 10, 2015 at 12:28 pm
Quick suggestion, use OUTPUT parameter for the procedure
π
/* Procedure #1 */
CREATE PROCEDURE [dbo].[GetUserIDbyUserName]
@UserName nvarchar(100)
,@UserID uniqueidentifier = NULL OUTPUT
AS
SELECT
@user-id...
May 10, 2015 at 5:23 am
Ken Davis (5/9/2015)
May 10, 2015 at 4:44 am
Quick solution which should be enough to get you passed this hurdle
π
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_A') IS NOT NULL DROP TABLE dbo.TBL_A;
CREATE TABLE dbo.TBL_A
(
nRef ...
May 10, 2015 at 4:35 am
Jeff Moden (5/9/2015)
Revenant (5/9/2015)
TomThomson (5/9/2015)
Eirikur Eiriksson (5/9/2015)
SQLRNNR (5/8/2015)
erosFreyja
FΓ³lkvangr
Field
Ninth
Sequence
May 10, 2015 at 3:57 am
petervdkerk (5/9/2015)
[giftregistry] is the general description of the list, the bridal couple in this is the only owner. They can add a text they want to send to...
May 10, 2015 at 2:05 am
Add a CTE for the conversion, then you can use the same code
π
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_XML_SAMPLE') IS NOT NULL DROP TABLE dbo.TBL_XML_SAMPLE;
CREATE TABLE dbo.TBL_XML_SAMPLE
(
XS_ID ...
May 10, 2015 at 1:49 am
One more thing, can you run DBCC CheckDB('[database name]') WITH NO_INFOMSGS, ALL_ERRORMSGS and post the full unedited output?
π
May 9, 2015 at 5:02 am
Quick questions:
π
1) The amount column in giftregistrypurchase table, is that the quantity of items?
2) In the same table, is the itemid the giftregistryitems.id?
Looking at the schema, I suspect that either...
May 9, 2015 at 2:40 am
Viewing 15 posts - 5,326 through 5,340 (of 8,753 total)